summaryrefslogtreecommitdiffstats
path: root/content/common
diff options
context:
space:
mode:
authoralecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-24 23:35:03 +0000
committeralecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-24 23:35:03 +0000
commit3177ede4a4b2e3353c11ec5036e6146b30cca380 (patch)
tree4d9ce5383874e66fb87c98d10062c3b96bf497ca /content/common
parenta0e58f3024477b052a7bdda6384abe43878aad65 (diff)
downloadchromium_src-3177ede4a4b2e3353c11ec5036e6146b30cca380.zip
chromium_src-3177ede4a4b2e3353c11ec5036e6146b30cca380.tar.gz
chromium_src-3177ede4a4b2e3353c11ec5036e6146b30cca380.tar.bz2
call putWithIndexKeys from chrome
This hooks up putIndexWithKeys on the chrome side, to be enabled by https://bugs.webkit.org/show_bug.cgi?id=91123 BUG=129471 TEST= Review URL: https://chromiumcodereview.appspot.com/10786043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148247 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common')
-rw-r--r--content/common/indexed_db/indexed_db_messages.h2
-rw-r--r--content/common/indexed_db/proxy_webidbobjectstore_impl.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/content/common/indexed_db/indexed_db_messages.h b/content/common/indexed_db/indexed_db_messages.h
index faf354d..b265a1f 100644
--- a/content/common/indexed_db/indexed_db_messages.h
+++ b/content/common/indexed_db/indexed_db_messages.h
@@ -439,7 +439,7 @@ IPC_SYNC_MESSAGE_CONTROL5_1(IndexedDBHostMsg_ObjectStoreGet,
int32, /* transaction_id */
WebKit::WebExceptionCode /* ec */)
-// WebIDBObjectStore::put() message.
+// WebIDBObjectStore::putWithIndexKeys() message.
IPC_SYNC_MESSAGE_CONTROL1_1(IndexedDBHostMsg_ObjectStorePut,
IndexedDBHostMsg_ObjectStorePut_Params,
WebKit::WebExceptionCode /* ec */)
diff --git a/content/common/indexed_db/proxy_webidbobjectstore_impl.h b/content/common/indexed_db/proxy_webidbobjectstore_impl.h
index 27dd73c..310ff2a 100644
--- a/content/common/indexed_db/proxy_webidbobjectstore_impl.h
+++ b/content/common/indexed_db/proxy_webidbobjectstore_impl.h
@@ -40,7 +40,7 @@ class RendererWebIDBObjectStoreImpl : public WebKit::WebIDBObjectStore {
WebKit::WebIDBCallbacks*,
const WebKit::WebIDBTransaction&,
const WebKit::WebVector<WebKit::WebString>&,
- const WebKit::WebVector<WebKit::WebVector<WebKit::WebIDBKey> >&,
+ const WebKit::WebVector<WebKit::WebIDBObjectStore::WebIndexKeys>&,
WebKit::WebExceptionCode&);
virtual void deleteFunction(const WebKit::WebIDBKeyRange& key_range,
WebKit::WebIDBCallbacks* callbacks,