Title: [121366] trunk/Source/WebKit/chromium
Revision
121366
Author
jsb...@chromium.org
Date
2012-06-27 14:05:44 -0700 (Wed, 27 Jun 2012)

Log Message

[Chromium] IndexedDB: Expose WebIDBTransaction::commit() method in public API
https://bugs.webkit.org/show_bug.cgi?id=90089

Reviewed by James Robinson.

Prep work for http://webkit.org/b/89379 which requires empty transactions to
trigger a commit from the front-end.

* public/WebIDBTransaction.h:
(WebKit::WebIDBTransaction::commit):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (121365 => 121366)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-06-27 21:02:28 UTC (rev 121365)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-06-27 21:05:44 UTC (rev 121366)
@@ -1,3 +1,16 @@
+2012-06-27  Joshua Bell  <jsb...@chromium.org>
+
+        [Chromium] IndexedDB: Expose WebIDBTransaction::commit() method in public API
+        https://bugs.webkit.org/show_bug.cgi?id=90089
+
+        Reviewed by James Robinson.
+
+        Prep work for http://webkit.org/b/89379 which requires empty transactions to
+        trigger a commit from the front-end.
+
+        * public/WebIDBTransaction.h:
+        (WebKit::WebIDBTransaction::commit):
+
 2012-06-27  Josh Horwich  <jhorw...@chromium.org>
 
         [chromium] Expose device scale factor in WebPluginContainer

Modified: trunk/Source/WebKit/chromium/public/WebIDBTransaction.h (121365 => 121366)


--- trunk/Source/WebKit/chromium/public/WebIDBTransaction.h	2012-06-27 21:02:28 UTC (rev 121365)
+++ trunk/Source/WebKit/chromium/public/WebIDBTransaction.h	2012-06-27 21:05:44 UTC (rev 121366)
@@ -51,6 +51,7 @@
         WEBKIT_ASSERT_NOT_REACHED();
         return 0;
     }
+    virtual void commit() { WEBKIT_ASSERT_NOT_REACHED(); }
     virtual void abort() { WEBKIT_ASSERT_NOT_REACHED(); }
     virtual void didCompleteTaskEvents() { WEBKIT_ASSERT_NOT_REACHED(); }
     virtual void setCallbacks(WebIDBTransactionCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to