Title: [140465] trunk/Source/WebCore
Revision
140465
Author
alecfl...@chromium.org
Date
2013-01-22 14:04:09 -0800 (Tue, 22 Jan 2013)

Log Message

IndexedDB: Don't assert when deprecated setCallbacks is called
https://bugs.webkit.org/show_bug.cgi?id=107580

Reviewed by Tony Chang.

Remove an assert for IDBTransactionBackendImpl that was deprecated
in a previous commit, but is still called by old chromium code.
After the chromium code is removed, this method will be removed
entirely.

* Modules/indexeddb/IDBTransactionBackendImpl.h:
(WebCore::IDBTransactionBackendImpl::setCallbacks):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (140464 => 140465)


--- trunk/Source/WebCore/ChangeLog	2013-01-22 22:03:09 UTC (rev 140464)
+++ trunk/Source/WebCore/ChangeLog	2013-01-22 22:04:09 UTC (rev 140465)
@@ -1,3 +1,18 @@
+2013-01-22  Alec Flett  <alecfl...@chromium.org>
+
+        IndexedDB: Don't assert when deprecated setCallbacks is called
+        https://bugs.webkit.org/show_bug.cgi?id=107580
+
+        Reviewed by Tony Chang.
+
+        Remove an assert for IDBTransactionBackendImpl that was deprecated
+        in a previous commit, but is still called by old chromium code.
+        After the chromium code is removed, this method will be removed
+        entirely.
+
+        * Modules/indexeddb/IDBTransactionBackendImpl.h:
+        (WebCore::IDBTransactionBackendImpl::setCallbacks):
+
 2013-01-22  Zan Dobersek  <zandober...@gmail.com>
 
         [GTK] Disable CSS Regions in release builds

Modified: trunk/Source/WebCore/Modules/indexeddb/IDBTransactionBackendImpl.h (140464 => 140465)


--- trunk/Source/WebCore/Modules/indexeddb/IDBTransactionBackendImpl.h	2013-01-22 22:03:09 UTC (rev 140464)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBTransactionBackendImpl.h	2013-01-22 22:04:09 UTC (rev 140465)
@@ -54,7 +54,7 @@
     // IDBTransactionBackendInterface
     virtual void abort();
     void commit();
-    virtual void setCallbacks(IDBTransactionCallbacks* callbacks) { ASSERT_NOT_REACHED(); }
+    virtual void setCallbacks(IDBTransactionCallbacks* callbacks) { }
 
     class Operation {
     public:
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to