Title: [137796] trunk/Source/WebKit2
Revision
137796
Author
[email protected]
Date
2012-12-15 01:02:47 -0800 (Sat, 15 Dec 2012)

Log Message

Added #if ENABLE(SQL_DATABASE) around WebPlatformStrategies::getDatabaseServer().
https://bugs.webkit.org/show_bug.cgi?id=104934..

Not reviewed.

Greening the Qt Linux Release Minimal bot.

* WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
(WebKit):
* WebProcess/WebCoreSupport/WebPlatformStrategies.h:
(WebPlatformStrategies):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (137795 => 137796)


--- trunk/Source/WebKit2/ChangeLog	2012-12-15 08:09:53 UTC (rev 137795)
+++ trunk/Source/WebKit2/ChangeLog	2012-12-15 09:02:47 UTC (rev 137796)
@@ -1,5 +1,19 @@
 2012-12-15  Mark Lam  <[email protected]>
 
+        Added #if ENABLE(SQL_DATABASE) around WebPlatformStrategies::getDatabaseServer().
+        https://bugs.webkit.org/show_bug.cgi?id=104934..
+
+        Not reviewed.
+
+        Greening the Qt Linux Release Minimal bot.
+
+        * WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
+        (WebKit):
+        * WebProcess/WebCoreSupport/WebPlatformStrategies.h:
+        (WebPlatformStrategies):
+
+2012-12-15  Mark Lam  <[email protected]>
+
         Re-landing patch for "Introducing the DatabaseStrategy and database servers".
         https://bugs.webkit.org/show_bug.cgi?id=104934.
 

Modified: trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp (137795 => 137796)


--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp	2012-12-15 08:09:53 UTC (rev 137795)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp	2012-12-15 09:02:47 UTC (rev 137796)
@@ -240,10 +240,12 @@
 
 // DatabaseStrategy
 
+#if ENABLE(SQL_DATABASE)
 AbstractDatabaseServer* WebPlatformStrategies::getDatabaseServer()
 {
     return DatabaseStrategy::getDatabaseServer(); // Use the default for now.
 }
+#endif
 
 // LoaderStrategy
 

Modified: trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.h (137795 => 137796)


--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.h	2012-12-15 08:09:53 UTC (rev 137795)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.h	2012-12-15 09:02:47 UTC (rev 137796)
@@ -71,7 +71,9 @@
     virtual void deleteAllCookies(WebCore::NetworkingContext*) OVERRIDE;
 
     // WebCore::DatabaseStrategy
+#if ENABLE(SQL_DATABASE)
     virtual WebCore::AbstractDatabaseServer* getDatabaseServer() OVERRIDE;
+#endif
 
     // WebCore::LoaderStrategy
 #if ENABLE(NETWORK_PROCESS)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to