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

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

Issue 10759012: Chromium side of plumbing for passing renderer-generated keys through IPC (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Include unit tests too Created 8 years, 5 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
Index: content/common/indexed_db/indexed_db_dispatcher.h
diff --git a/content/common/indexed_db/indexed_db_dispatcher.h b/content/common/indexed_db/indexed_db_dispatcher.h
index 5df51612373aced74d1a042da0f280a3c24c7118..915fa8144a811663ffae72c0078866423dd55b94 100644
--- a/content/common/indexed_db/indexed_db_dispatcher.h
+++ b/content/common/indexed_db/indexed_db_dispatcher.h
@@ -169,13 +169,16 @@ class CONTENT_EXPORT IndexedDBDispatcher
const WebKit::WebIDBTransaction& transaction,
WebKit::WebExceptionCode* ec);
- void RequestIDBObjectStorePut(const content::SerializedScriptValue& value,
- const content::IndexedDBKey& key,
- WebKit::WebIDBObjectStore::PutMode putMode,
- WebKit::WebIDBCallbacks* callbacks,
- int32 idb_object_store_id,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode* ec);
+ void RequestIDBObjectStorePut(
+ const content::SerializedScriptValue& value,
+ const content::IndexedDBKey& key,
+ WebKit::WebIDBObjectStore::PutMode putMode,
+ WebKit::WebIDBCallbacks* callbacks,
+ int32 idb_object_store_id,
+ const WebKit::WebIDBTransaction& transaction,
+ const WebKit::WebVector<WebKit::WebString>& indexNames,
+ const WebKit::WebVector<WebKit::WebVector<WebKit::WebIDBKey> >& indexKeys,
+ WebKit::WebExceptionCode* ec);
void RequestIDBObjectStoreDelete(
const content::IndexedDBKeyRange& key_range,
« no previous file with comments | « content/browser/in_process_webkit/indexed_db_dispatcher_host.cc ('k') | content/common/indexed_db/indexed_db_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698