Title: [168638] trunk/Source/WebKit2
Revision
168638
Author
commit-qu...@webkit.org
Date
2014-05-12 12:54:38 -0700 (Mon, 12 May 2014)

Log Message

REGRESSION(168625): [GTK] build broken due to WKContextSetLocalStorageDirectory
https://bugs.webkit.org/show_bug.cgi?id=132831

Unreviewed GTK build fix.

Patch by Carlos Alberto Lopez Perez <clo...@igalia.com> on 2014-05-12

* UIProcess/gtk/WebContextGtk.cpp:
(WebKit::WebContext::platformDefaultLocalStorageDirectory):
This is now a static member function.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (168637 => 168638)


--- trunk/Source/WebKit2/ChangeLog	2014-05-12 19:53:28 UTC (rev 168637)
+++ trunk/Source/WebKit2/ChangeLog	2014-05-12 19:54:38 UTC (rev 168638)
@@ -1,3 +1,14 @@
+2014-05-12  Carlos Alberto Lopez Perez  <clo...@igalia.com>
+
+        REGRESSION(168625): [GTK] build broken due to WKContextSetLocalStorageDirectory
+        https://bugs.webkit.org/show_bug.cgi?id=132831
+
+        Unreviewed GTK build fix.
+
+        * UIProcess/gtk/WebContextGtk.cpp:
+        (WebKit::WebContext::platformDefaultLocalStorageDirectory):
+        This is now a static member function.
+
 2014-05-12  Anders Carlsson  <ander...@apple.com>
 
         WKWebViewConfiguration should fill in the blanks

Modified: trunk/Source/WebKit2/UIProcess/gtk/WebContextGtk.cpp (168637 => 168638)


--- trunk/Source/WebKit2/UIProcess/gtk/WebContextGtk.cpp	2014-05-12 19:53:28 UTC (rev 168637)
+++ trunk/Source/WebKit2/UIProcess/gtk/WebContextGtk.cpp	2014-05-12 19:54:38 UTC (rev 168638)
@@ -124,7 +124,7 @@
     return WebCore::filenameToString(databaseDirectory.get());
 }
 
-String WebContext::platformDefaultLocalStorageDirectory() const
+String WebContext::platformDefaultLocalStorageDirectory()
 {
     GUniquePtr<gchar> storageDirectory(g_build_filename(g_get_user_data_dir(), "webkitgtk", "localstorage", nullptr));
     return WebCore::filenameToString(storageDirectory.get());
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to