Title: [159470] trunk/Source/WebCore
Revision
159470
Author
beid...@apple.com
Date
2013-11-18 16:45:03 -0800 (Mon, 18 Nov 2013)

Log Message

Remove IDBServerConnection's deprecatedBackingStore()
https://bugs.webkit.org/show_bug.cgi?id=124547

Reviewed by Tim Horton.

It is no longer needed, as the front end no longer knows about the backing store.

* Modules/indexeddb/IDBServerConnection.h:

* Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp:
* Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (159469 => 159470)


--- trunk/Source/WebCore/ChangeLog	2013-11-19 00:35:15 UTC (rev 159469)
+++ trunk/Source/WebCore/ChangeLog	2013-11-19 00:45:03 UTC (rev 159470)
@@ -1,3 +1,17 @@
+2013-11-18  Brady Eidson  <beid...@apple.com>
+
+        Remove IDBServerConnection's deprecatedBackingStore()
+        https://bugs.webkit.org/show_bug.cgi?id=124547
+
+        Reviewed by Tim Horton.
+
+        It is no longer needed, as the front end no longer knows about the backing store.
+
+        * Modules/indexeddb/IDBServerConnection.h:
+
+        * Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp:
+        * Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h:
+
 2013-11-18  Samuel White  <samuel_wh...@apple.com>
 
         AX: Add ability to fetch only visible table rows.

Modified: trunk/Source/WebCore/Modules/indexeddb/IDBServerConnection.h (159469 => 159470)


--- trunk/Source/WebCore/Modules/indexeddb/IDBServerConnection.h	2013-11-19 00:35:15 UTC (rev 159469)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBServerConnection.h	2013-11-19 00:45:03 UTC (rev 159470)
@@ -55,10 +55,6 @@
 public:
     virtual ~IDBServerConnection() { }
 
-    // FIXME: For now, server connection provides a synchronous accessor to the in-process backing store objects.
-    // This is temporary and will be removed soon.
-    virtual IDBBackingStoreInterface* deprecatedBackingStore() = 0;
-
     virtual bool isClosed() = 0;
 
     typedef std::function<void (bool success)> BoolCallbackFunction;

Modified: trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp (159469 => 159470)


--- trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp	2013-11-19 00:35:15 UTC (rev 159469)
+++ trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp	2013-11-19 00:45:03 UTC (rev 159470)
@@ -66,11 +66,6 @@
 {
 }
 
-IDBBackingStoreInterface* IDBServerConnectionLevelDB::deprecatedBackingStore()
-{
-    return m_backingStore.get();
-}
-
 bool IDBServerConnectionLevelDB::isClosed()
 {
     return m_closed;

Modified: trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h (159469 => 159470)


--- trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h	2013-11-19 00:35:15 UTC (rev 159469)
+++ trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h	2013-11-19 00:45:03 UTC (rev 159470)
@@ -46,10 +46,6 @@
 
     virtual ~IDBServerConnectionLevelDB();
 
-    // FIXME: For now, server connection provides a synchronous accessor to the in-process backing store objects.
-    // This is temporary and will be removed soon.
-    virtual IDBBackingStoreInterface* deprecatedBackingStore() OVERRIDE;
-
     virtual bool isClosed() OVERRIDE;
 
     // Database-level operations
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to