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

Unified Diff: content/common/indexed_db/proxy_webidbobjectstore_impl.h

Issue 11312178: Remove legacy IDB backend IPC glue for string-based references. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add crbug link Created 8 years, 1 month 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
Index: content/common/indexed_db/proxy_webidbobjectstore_impl.h
diff --git a/content/common/indexed_db/proxy_webidbobjectstore_impl.h b/content/common/indexed_db/proxy_webidbobjectstore_impl.h
index ad8a7931733dd2b1cd69bdeb336cf76c6e71f7e2..90611ec84611a16033dd82fd07c1cc3626bd5bb4 100644
--- a/content/common/indexed_db/proxy_webidbobjectstore_impl.h
+++ b/content/common/indexed_db/proxy_webidbobjectstore_impl.h
@@ -33,15 +33,6 @@ class RendererWebIDBObjectStoreImpl : public WebKit::WebIDBObjectStore {
WebKit::WebIDBCallbacks* callbacks,
const WebKit::WebIDBTransaction& transaction,
WebKit::WebExceptionCode& ec);
- virtual void putWithIndexKeys(
- const WebKit::WebSerializedScriptValue&,
- const WebKit::WebIDBKey&,
- PutMode,
- WebKit::WebIDBCallbacks*,
- const WebKit::WebIDBTransaction&,
- const WebKit::WebVector<WebKit::WebString>&,
- const WebKit::WebVector<WebKit::WebIDBObjectStore::WebIndexKeys>&,
- WebKit::WebExceptionCode&);
virtual void put(
const WebKit::WebSerializedScriptValue&,
const WebKit::WebIDBKey&,
@@ -51,15 +42,9 @@ class RendererWebIDBObjectStoreImpl : public WebKit::WebIDBObjectStore {
const WebKit::WebVector<long long>&,
const WebKit::WebVector<WebKit::WebIDBObjectStore::WebIndexKeys>&);
virtual void setIndexKeys(const WebKit::WebIDBKey&,
- const WebKit::WebVector<WebKit::WebString>&,
- const WebKit::WebVector<WebIndexKeys>&,
- const WebKit::WebIDBTransaction&);
- virtual void setIndexKeys(const WebKit::WebIDBKey&,
const WebKit::WebVector<long long>&,
const WebKit::WebVector<WebIndexKeys>&,
const WebKit::WebIDBTransaction&);
- virtual void setIndexesReady(const WebKit::WebVector<WebKit::WebString>&,
- const WebKit::WebIDBTransaction&);
virtual void setIndexesReady(const WebKit::WebVector<long long>&,
const WebKit::WebIDBTransaction&);
virtual void deleteFunction(const WebKit::WebIDBKeyRange& key_range,
@@ -80,13 +65,7 @@ class RendererWebIDBObjectStoreImpl : public WebKit::WebIDBObjectStore {
WebKit::WebExceptionCode& ec);
// Transfers ownership of the WebIDBIndex to the caller.
- virtual WebKit::WebIDBIndex* index(const WebKit::WebString& name,
- WebKit::WebExceptionCode& ec);
virtual WebKit::WebIDBIndex* index(long long object_store_id);
- virtual void deleteIndex(const WebKit::WebString& name,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode& ec);
-
virtual void deleteIndex(long long index_id,
const WebKit::WebIDBTransaction& transaction,
WebKit::WebExceptionCode& ec);
« no previous file with comments | « content/common/indexed_db/proxy_webidbdatabase_impl.cc ('k') | content/common/indexed_db/proxy_webidbobjectstore_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698