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

Unified Diff: Source/modules/indexeddb/WebIDBCallbacksImpl.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/IDBObjectStore.cpp ('k') | Source/modules/indexeddb/WebIDBCallbacksImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/WebIDBCallbacksImpl.h
diff --git a/Source/modules/indexeddb/WebIDBCallbacksImpl.h b/Source/modules/indexeddb/WebIDBCallbacksImpl.h
index 1772f36025ece635bad9d1ddc188210bb3f16224..c49a9552161ea94be02310e29dd7259e24f3c147 100644
--- a/Source/modules/indexeddb/WebIDBCallbacksImpl.h
+++ b/Source/modules/indexeddb/WebIDBCallbacksImpl.h
@@ -58,21 +58,13 @@ public:
// Pointers transfer ownership.
virtual void onError(const blink::WebIDBDatabaseError&) OVERRIDE;
virtual void onSuccess(const blink::WebVector<blink::WebString>&) OVERRIDE;
- // TODO(ericu): Remove this version, here only for the 3-side patch dance.
- virtual void onSuccess(blink::WebIDBCursor*, const blink::WebIDBKey&, const blink::WebIDBKey& primaryKey, const blink::WebData&);
virtual void onSuccess(blink::WebIDBCursor*, const blink::WebIDBKey&, const blink::WebIDBKey& primaryKey, const blink::WebData&, const blink::WebVector<blink::WebBlobInfo>&) OVERRIDE;
virtual void onSuccess(blink::WebIDBDatabase*, const blink::WebIDBMetadata&) OVERRIDE;
virtual void onSuccess(const blink::WebIDBKey&) OVERRIDE;
- // TODO(ericu): Remove this version, here only for the 3-side patch dance.
- virtual void onSuccess(const blink::WebData&);
virtual void onSuccess(const blink::WebData&, const blink::WebVector<blink::WebBlobInfo>&) OVERRIDE;
- // TODO(ericu): Remove this version, here only for the 3-side patch dance.
- virtual void onSuccess(const blink::WebData&, const blink::WebIDBKey&, const blink::WebIDBKeyPath&);
virtual void onSuccess(const blink::WebData&, const blink::WebVector<blink::WebBlobInfo>&, const blink::WebIDBKey&, const blink::WebIDBKeyPath&) OVERRIDE;
virtual void onSuccess(long long) OVERRIDE;
virtual void onSuccess() OVERRIDE;
- // TODO(ericu): Remove this version, here only for the 3-side patch dance.
- virtual void onSuccess(const blink::WebIDBKey&, const blink::WebIDBKey& primaryKey, const blink::WebData&);
virtual void onSuccess(const blink::WebIDBKey&, const blink::WebIDBKey& primaryKey, const blink::WebData&, const blink::WebVector<blink::WebBlobInfo>&) OVERRIDE;
virtual void onBlocked(long long oldVersion) OVERRIDE;
virtual void onUpgradeNeeded(long long oldVersion, blink::WebIDBDatabase*, const blink::WebIDBMetadata&, unsigned short dataLoss, blink::WebString dataLossMessage) OVERRIDE;
« no previous file with comments | « Source/modules/indexeddb/IDBObjectStore.cpp ('k') | Source/modules/indexeddb/WebIDBCallbacksImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698