Title: [149582] trunk/Source/WebCore
Revision
149582
Author
wei...@apple.com
Date
2013-05-05 17:22:54 -0700 (Sun, 05 May 2013)

Log Message

Remove empty function SQLiteFileSystem::registerSQLiteVFS() and its callers
https://bugs.webkit.org/show_bug.cgi?id=115619

Reviewed by Dan Bernstein.

* Modules/webdatabase/DatabaseTracker.cpp:
* platform/sql/SQLiteFileSystem.cpp:
* platform/sql/SQLiteFileSystem.h:
* storage/StorageTracker.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (149581 => 149582)


--- trunk/Source/WebCore/ChangeLog	2013-05-05 23:25:46 UTC (rev 149581)
+++ trunk/Source/WebCore/ChangeLog	2013-05-06 00:22:54 UTC (rev 149582)
@@ -1,3 +1,15 @@
+2013-05-05  Sam Weinig  <s...@webkit.org>
+
+        Remove empty function SQLiteFileSystem::registerSQLiteVFS() and its callers
+        https://bugs.webkit.org/show_bug.cgi?id=115619
+
+        Reviewed by Dan Bernstein.
+
+        * Modules/webdatabase/DatabaseTracker.cpp:
+        * platform/sql/SQLiteFileSystem.cpp:
+        * platform/sql/SQLiteFileSystem.h:
+        * storage/StorageTracker.cpp:
+
 2013-05-05  Chris Fleizach  <cfleiz...@apple.com>
 
         AX: aria-checked not exposed correctly on menuitemcheckbox or menuitemradio roles

Modified: trunk/Source/WebCore/Modules/webdatabase/DatabaseTracker.cpp (149581 => 149582)


--- trunk/Source/WebCore/Modules/webdatabase/DatabaseTracker.cpp	2013-05-05 23:25:46 UTC (rev 149581)
+++ trunk/Source/WebCore/Modules/webdatabase/DatabaseTracker.cpp	2013-05-06 00:22:54 UTC (rev 149582)
@@ -77,8 +77,6 @@
     : m_client(0)
 {
     setDatabaseDirectoryPath(databasePath);
-    
-    SQLiteFileSystem::registerSQLiteVFS();
 }
 
 void DatabaseTracker::setDatabaseDirectoryPath(const String& path)

Modified: trunk/Source/WebCore/platform/sql/SQLiteFileSystem.cpp (149581 => 149582)


--- trunk/Source/WebCore/platform/sql/SQLiteFileSystem.cpp	2013-05-05 23:25:46 UTC (rev 149581)
+++ trunk/Source/WebCore/platform/sql/SQLiteFileSystem.cpp	2013-05-06 00:22:54 UTC (rev 149582)
@@ -44,10 +44,6 @@
 {
 }
 
-void SQLiteFileSystem::registerSQLiteVFS()
-{
-}
-
 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database, bool)
 {
     // SQLite expects a null terminator on its UTF-16 strings.

Modified: trunk/Source/WebCore/platform/sql/SQLiteFileSystem.h (149581 => 149582)


--- trunk/Source/WebCore/platform/sql/SQLiteFileSystem.h	2013-05-05 23:25:46 UTC (rev 149581)
+++ trunk/Source/WebCore/platform/sql/SQLiteFileSystem.h	2013-05-06 00:22:54 UTC (rev 149582)
@@ -44,9 +44,6 @@
 // by the WebKit database code.
 class SQLiteFileSystem {
 public:
-    // Registers a user-defined SQLite VFS.
-    static void registerSQLiteVFS();
-
     // Opens a database file.
     //
     // fileName - The name of the database file.

Modified: trunk/Source/WebCore/storage/StorageTracker.cpp (149581 => 149582)


--- trunk/Source/WebCore/storage/StorageTracker.cpp	2013-05-05 23:25:46 UTC (rev 149581)
+++ trunk/Source/WebCore/storage/StorageTracker.cpp	2013-05-06 00:22:54 UTC (rev 149582)
@@ -72,7 +72,6 @@
     // FIXME (<rdar://problem/9127819>): Is there a more explicit way of doing this besides accessing the UTF8Encoding?
     UTF8Encoding();
     
-    SQLiteFileSystem::registerSQLiteVFS();
     storageTracker->setIsActive(true);
     storageTracker->m_thread->start();  
     storageTracker->importOriginIdentifiers();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to