Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(412)

Unified Diff: public/platform/WebIDBCallbacks.h

Issue 266583002: Switch WebIDBDatabase::put over to the version with blobs. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Even better! Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/indexeddb/WebIDBCallbacksImpl.cpp ('k') | public/platform/WebIDBDatabase.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebIDBCallbacks.h
diff --git a/public/platform/WebIDBCallbacks.h b/public/platform/WebIDBCallbacks.h
index d10aa4c38f553b8d3a222547a1a1f4cbc9c8b7b5..5ba28295911b8a6c6552299e1df2a3c8c15c8912 100644
--- a/public/platform/WebIDBCallbacks.h
+++ b/public/platform/WebIDBCallbacks.h
@@ -49,21 +49,13 @@ public:
// Pointers transfer ownership.
virtual void onError(const WebIDBDatabaseError&) { BLINK_ASSERT_NOT_REACHED(); }
virtual void onSuccess(const WebVector<WebString>&) { BLINK_ASSERT_NOT_REACHED(); }
- // TODO(ericu): Remove this version, here only for the 3-side patch dance.
- virtual void onSuccess(WebIDBCursor*, const WebIDBKey&, const WebIDBKey& primaryKey, const WebData&) { BLINK_ASSERT_NOT_REACHED(); }
virtual void onSuccess(WebIDBCursor*, const WebIDBKey&, const WebIDBKey& primaryKey, const WebData&, const WebVector<WebBlobInfo>&) { BLINK_ASSERT_NOT_REACHED(); }
virtual void onSuccess(WebIDBDatabase*, const WebIDBMetadata&) { BLINK_ASSERT_NOT_REACHED(); }
virtual void onSuccess(const WebIDBKey&) { BLINK_ASSERT_NOT_REACHED(); }
- // TODO(ericu): Remove this version, here only for the 3-side patch dance.
- virtual void onSuccess(const WebData&) { BLINK_ASSERT_NOT_REACHED(); }
virtual void onSuccess(const WebData&, const WebVector<WebBlobInfo>&) { BLINK_ASSERT_NOT_REACHED(); }
- // TODO(ericu): Remove this version, here only for the 3-side patch dance.
- virtual void onSuccess(const WebData&, const WebIDBKey&, const WebIDBKeyPath&) { BLINK_ASSERT_NOT_REACHED(); }
virtual void onSuccess(const WebData&, const WebVector<WebBlobInfo>&, const WebIDBKey&, const WebIDBKeyPath&) { BLINK_ASSERT_NOT_REACHED(); }
virtual void onSuccess(long long) { BLINK_ASSERT_NOT_REACHED(); }
virtual void onSuccess() { BLINK_ASSERT_NOT_REACHED(); }
- // TODO(ericu): Remove this version, here only for the 3-side patch dance.
- virtual void onSuccess(const WebIDBKey&, const WebIDBKey& primaryKey, const WebData&) { BLINK_ASSERT_NOT_REACHED(); }
virtual void onSuccess(const WebIDBKey&, const WebIDBKey& primaryKey, const WebData&, const WebVector<WebBlobInfo>&) { BLINK_ASSERT_NOT_REACHED(); }
virtual void onBlocked(long long oldVersion) { BLINK_ASSERT_NOT_REACHED(); }
virtual void onUpgradeNeeded(long long oldVersion, WebIDBDatabase*, const WebIDBMetadata&, unsigned short dataLoss, WebString dataLossMessage) { BLINK_ASSERT_NOT_REACHED(); }
« no previous file with comments | « Source/modules/indexeddb/WebIDBCallbacksImpl.cpp ('k') | public/platform/WebIDBDatabase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698