Changeset 85868 in webkit


Ignore:
Timestamp:
May 5, 2011 12:21:39 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-05-05 Bharathwaaj Srinivasan <bharathwaaj.s@gmail.com>

Reviewed by Holger Freyther.

Fix build-webkit --minimal.
https://bugs.webkit.org/show_bug.cgi?id=60257

No new tests. This is just a build fix.

  • bindings/js/JSDOMBinding.cpp:

2011-05-05 Bharathwaaj Srinivasan <bharathwaaj.s@gmail.com>

Reviewed by Holger Freyther.

Fix build-webkit --minimal.
https://bugs.webkit.org/show_bug.cgi?id=60257

  • webkit/webkitglobals.cpp: (webkitInit):
Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r85865 r85868  
     12011-05-05  Bharathwaaj Srinivasan  <bharathwaaj.s@gmail.com>
     2
     3        Reviewed by Holger Freyther.
     4
     5        Fix build-webkit --minimal.
     6        https://bugs.webkit.org/show_bug.cgi?id=60257
     7
     8        No new tests. This is just a build fix.
     9
     10        * bindings/js/JSDOMBinding.cpp:
     11
    1122011-05-05  Eric Carlson  <eric.carlson@apple.com>
    213
  • trunk/Source/WebCore/bindings/js/JSDOMBinding.cpp

    r84934 r85868  
    3838#include "JSRangeException.h"
    3939#include "JSSQLException.h"
     40#if ENABLE(SVG)
    4041#include "JSSVGException.h"
     42#endif
    4143#include "JSXMLHttpRequestException.h"
     44#if ENABLE(XPATH)
    4245#include "JSXPathException.h"
     46#endif
    4347#include "RangeException.h"
    4448#include "SQLException.h"
  • trunk/Source/WebKit/gtk/ChangeLog

    r85864 r85868  
     12011-05-05  Bharathwaaj Srinivasan  <bharathwaaj.s@gmail.com>
     2
     3        Reviewed by Holger Freyther.
     4
     5        Fix build-webkit --minimal.
     6        https://bugs.webkit.org/show_bug.cgi?id=60257
     7
     8        * webkit/webkitglobals.cpp:
     9        (webkitInit):
     10
    1112011-05-05  Ryosuke Niwa  <rniwa@webkit.org>
    212
  • trunk/Source/WebKit/gtk/webkit/webkitglobals.cpp

    r80715 r85868  
    266266    gchar* databaseDirectory = g_build_filename(g_get_user_data_dir(), "webkit", "databases", NULL);
    267267    webkit_set_web_database_directory_path(databaseDirectory);
     268#if ENABLE(OFFLINE_WEB_APPLICATIONS)
    268269    WebCore::cacheStorage().setCacheDirectory(databaseDirectory);
     270#endif
    269271
    270272    g_free(databaseDirectory);
Note: See TracChangeset for help on using the changeset viewer.