Title: [107993] trunk/Source/WebKit/chromium
Revision
107993
Author
jsb...@chromium.org
Date
2012-02-16 16:10:09 -0800 (Thu, 16 Feb 2012)

Log Message

IndexedDB: Chromium WebKit API support for IDBObjectStore.delete(IDBKeyRange)
https://bugs.webkit.org/show_bug.cgi?id=78619

Add an overload to WebIDBObjectStore::deleteFunction(). First part of a two-sided patch.

Reviewed by Darin Fisher.

* public/WebIDBObjectStore.h:
(WebKit::WebIDBObjectStore::deleteFunction):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (107992 => 107993)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-02-17 00:04:35 UTC (rev 107992)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-02-17 00:10:09 UTC (rev 107993)
@@ -1,3 +1,15 @@
+2012-02-16  Joshua Bell  <jsb...@chromium.org>
+
+        IndexedDB: Chromium WebKit API support for IDBObjectStore.delete(IDBKeyRange)
+        https://bugs.webkit.org/show_bug.cgi?id=78619
+
+        Add an overload to WebIDBObjectStore::deleteFunction(). First part of a two-sided patch.
+
+        Reviewed by Darin Fisher.
+
+        * public/WebIDBObjectStore.h:
+        (WebKit::WebIDBObjectStore::deleteFunction):
+
 2012-02-16  Dana Jansens  <dan...@chromium.org>
 
         [chromium] Clipping/Transforms applied in wrong order in opaque paint tracking

Modified: trunk/Source/WebKit/chromium/public/WebIDBObjectStore.h (107992 => 107993)


--- trunk/Source/WebKit/chromium/public/WebIDBObjectStore.h	2012-02-17 00:04:35 UTC (rev 107992)
+++ trunk/Source/WebKit/chromium/public/WebIDBObjectStore.h	2012-02-17 00:10:09 UTC (rev 107993)
@@ -69,6 +69,7 @@
 
     virtual void put(const WebSerializedScriptValue&, const WebIDBKey&, PutMode, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
     virtual void deleteFunction(const WebIDBKey&, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
+    virtual void deleteFunction(const WebIDBKeyRange&, WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
     virtual void clear(WebIDBCallbacks*, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
     virtual WebIDBIndex* createIndex(const WebString& name, const WebString& keyPath, bool unique, bool multiEntry, const WebIDBTransaction& transaction, WebExceptionCode& ec)
     {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to