Changeset 21131 in webkit


Ignore:
Timestamp:
Apr 26, 2007 6:41:40 PM (17 years ago)
Author:
ggaren
Message:

Build fix -- added #includes that we used to get implicitly through
JSStringRef.h.

  • API/JSNode.c:
  • API/JSNodeList.c:
  • API/minidom.c:
  • API/testapi.c:
Location:
trunk/JavaScriptCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/API/JSNode.c

    r15497 r21131  
    3030#include "NodeList.h"
    3131#include "UnusedParam.h"
     32#include <assert.h>
    3233
    3334static JSValueRef JSNode_appendChild(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
  • trunk/JavaScriptCore/API/JSNodeList.c

    r15799 r21131  
    2828#include "JSNodeList.h"
    2929#include "UnusedParam.h"
     30#include <assert.h>
    3031
    3132static JSValueRef JSNodeList_item(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
  • trunk/JavaScriptCore/API/minidom.c

    r16156 r21131  
    2626
    2727#include "JavaScriptCore.h"
     28#include "JSStringRefCF.h"
    2829#include "JSNode.h"
    2930#include <wtf/UnusedParam.h>
  • trunk/JavaScriptCore/API/testapi.c

    r17017 r21131  
    2525 */
    2626
     27#if defined(__APPLE__)
     28#include "JSStringRefCF.h"
     29#endif
     30
    2731#include "JavaScriptCore.h"
    28 #include <wtf/UnusedParam.h>
    29 
    30 #if defined(__APPLE__)
    31 #include <CoreFoundation/CoreFoundation.h>
    32 #endif
    33 
    3432#include <assert.h>
    3533#include <math.h>
    3634#include <setjmp.h>
     35#include <wtf/UnusedParam.h>
    3736
    3837static JSGlobalContextRef context = 0;
  • trunk/JavaScriptCore/ChangeLog

    r21130 r21131  
     12007-04-26  Geoffrey Garen  <ggaren@apple.com>
     2
     3        Build fix -- added #includes that we used to get implicitly through
     4        JSStringRef.h.
     5
     6        * API/JSNode.c:
     7        * API/JSNodeList.c:
     8        * API/minidom.c:
     9        * API/testapi.c:
     10
    1112007-04-26  Geoffrey Garen  <ggaren@apple.com>
    212
Note: See TracChangeset for help on using the changeset viewer.