Title: [113537] trunk/Source/WebCore
Revision
113537
Author
[email protected]
Date
2012-04-06 19:06:26 -0700 (Fri, 06 Apr 2012)

Log Message

LocalFileSystem::initializeLocalFileSystem should be static
https://bugs.webkit.org/show_bug.cgi?id=83356

Reviewed by Rob Buis.

LocalFileSystem::initializeLocalFileSystem should be static because
static LocalFileSystem::localFileSystem() requires initializeLocalFileSystem()
is called before it gets called.

No functionalities changed, no new tests.

* Modules/filesystem/LocalFileSystem.h:
(LocalFileSystem):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (113536 => 113537)


--- trunk/Source/WebCore/ChangeLog	2012-04-07 02:04:32 UTC (rev 113536)
+++ trunk/Source/WebCore/ChangeLog	2012-04-07 02:06:26 UTC (rev 113537)
@@ -1,3 +1,19 @@
+2012-04-06  Leo Yang  <[email protected]>
+
+        LocalFileSystem::initializeLocalFileSystem should be static
+        https://bugs.webkit.org/show_bug.cgi?id=83356
+
+        Reviewed by Rob Buis.
+
+        LocalFileSystem::initializeLocalFileSystem should be static because
+        static LocalFileSystem::localFileSystem() requires initializeLocalFileSystem()
+        is called before it gets called.
+
+        No functionalities changed, no new tests.
+
+        * Modules/filesystem/LocalFileSystem.h:
+        (LocalFileSystem):
+
 2012-04-06  Martin Robinson  <[email protected]>
 
         [GTK] Accelerated compositing is broken after recent TextureMapper reorganizations

Modified: trunk/Source/WebCore/Modules/filesystem/LocalFileSystem.h (113536 => 113537)


--- trunk/Source/WebCore/Modules/filesystem/LocalFileSystem.h	2012-04-07 02:04:32 UTC (rev 113536)
+++ trunk/Source/WebCore/Modules/filesystem/LocalFileSystem.h	2012-04-07 02:06:26 UTC (rev 113537)
@@ -60,7 +60,7 @@
 
 #if !PLATFORM(CHROMIUM)
     // This call is not thread-safe; must be called before any worker threads are created.
-    void initializeLocalFileSystem(const String&);
+    static void initializeLocalFileSystem(const String&);
 
     String fileSystemBasePath() const;
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to