Title: [143665] trunk/Source/WebKit/chromium
Revision
143665
Author
alecfl...@chromium.org
Date
2013-02-21 16:48:51 -0800 (Thu, 21 Feb 2013)

Log Message

IndexedDB: Remove copying WebIDBDatabase::put() stub
https://bugs.webkit.org/show_bug.cgi?id=109967

Reviewed by Darin Fisher.

Now that the chromium call to this method has
been removed, we can remove the stub.

* public/WebIDBDatabase.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (143664 => 143665)


--- trunk/Source/WebKit/chromium/ChangeLog	2013-02-22 00:39:36 UTC (rev 143664)
+++ trunk/Source/WebKit/chromium/ChangeLog	2013-02-22 00:48:51 UTC (rev 143665)
@@ -1,3 +1,15 @@
+2013-02-21  Alec Flett  <alecfl...@chromium.org>
+
+        IndexedDB: Remove copying WebIDBDatabase::put() stub
+        https://bugs.webkit.org/show_bug.cgi?id=109967
+
+        Reviewed by Darin Fisher.
+
+        Now that the chromium call to this method has
+        been removed, we can remove the stub.
+
+        * public/WebIDBDatabase.h:
+
 2013-02-21  Dirk Pranke  <dpra...@chromium.org>
 
         Unreviewed, roll chromium deps 183552 -> 183788

Modified: trunk/Source/WebKit/chromium/public/WebIDBDatabase.h (143664 => 143665)


--- trunk/Source/WebKit/chromium/public/WebIDBDatabase.h	2013-02-22 00:39:36 UTC (rev 143664)
+++ trunk/Source/WebKit/chromium/public/WebIDBDatabase.h	2013-02-22 00:48:51 UTC (rev 143665)
@@ -75,7 +75,6 @@
 
     virtual void get(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, bool keyOnly, WebIDBCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
     // Note that 'value' may be consumed/adopted by this call.
-    virtual void put(long long transactionId, long long objectStoreId, WebVector<unsigned char>* value, const WebIDBKey&, PutMode, WebIDBCallbacks*, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { WEBKIT_ASSERT_NOT_REACHED(); }
     virtual void put(long long transactionId, long long objectStoreId, const WebData& value, const WebIDBKey&, PutMode, WebIDBCallbacks*, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { WEBKIT_ASSERT_NOT_REACHED(); }
     virtual void setIndexKeys(long long transactionId, long long objectStoreId, const WebIDBKey&, const WebVector<long long>& indexIds, const WebVector<WebIndexKeys>&) { WEBKIT_ASSERT_NOT_REACHED(); }
     virtual void setIndexesReady(long long transactionId, long long objectStoreId, const WebVector<long long>& indexIds) { WEBKIT_ASSERT_NOT_REACHED(); }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to