Title: [131511] trunk/Source/WebCore
Revision
131511
Author
[email protected]
Date
2012-10-16 15:00:30 -0700 (Tue, 16 Oct 2012)

Log Message

Inspector: Don't fire assert when inspecting an empty db
https://bugs.webkit.org/show_bug.cgi?id=99370

Reviewed by Vsevolod Vlasov.

* inspector/InspectorIndexedDBAgent.cpp:
(WebCore):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (131510 => 131511)


--- trunk/Source/WebCore/ChangeLog	2012-10-16 22:00:18 UTC (rev 131510)
+++ trunk/Source/WebCore/ChangeLog	2012-10-16 22:00:30 UTC (rev 131511)
@@ -1,3 +1,13 @@
+2012-10-16  David Grogan  <[email protected]>
+
+        Inspector: Don't fire assert when inspecting an empty db
+        https://bugs.webkit.org/show_bug.cgi?id=99370
+
+        Reviewed by Vsevolod Vlasov.
+
+        * inspector/InspectorIndexedDBAgent.cpp:
+        (WebCore):
+
 2012-10-16  Tony Chang  <[email protected]>
 
         Unreviewed, try to fix the Apple Win build by forcing a rebuild of RenderingAllInOne.cpp.

Modified: trunk/Source/WebCore/inspector/InspectorIndexedDBAgent.cpp (131510 => 131511)


--- trunk/Source/WebCore/inspector/InspectorIndexedDBAgent.cpp	2012-10-16 22:00:18 UTC (rev 131510)
+++ trunk/Source/WebCore/inspector/InspectorIndexedDBAgent.cpp	2012-10-16 22:00:30 UTC (rev 131511)
@@ -104,6 +104,7 @@
     virtual void onSuccess(PassRefPtr<SerializedScriptValue>, PassRefPtr<IDBKey>, const IDBKeyPath&) OVERRIDE { }
     virtual void onSuccess(PassRefPtr<IDBKey>, PassRefPtr<IDBKey>, PassRefPtr<SerializedScriptValue>) OVERRIDE { }
     virtual void onSuccessWithPrefetch(const Vector<RefPtr<IDBKey> >&, const Vector<RefPtr<IDBKey> >&, const Vector<RefPtr<SerializedScriptValue> >&) OVERRIDE { }
+    virtual void onUpgradeNeeded(int64_t, PassRefPtr<WebCore::IDBTransactionBackendInterface>, PassRefPtr<WebCore::IDBDatabaseBackendInterface>) OVERRIDE { }
     virtual void onBlocked() OVERRIDE { }
 };
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to