From 3177ede4a4b2e3353c11ec5036e6146b30cca380 Mon Sep 17 00:00:00 2001 From: "alecflett@chromium.org" Date: Tue, 24 Jul 2012 23:35:03 +0000 Subject: 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 --- content/common/indexed_db/indexed_db_messages.h | 2 +- content/common/indexed_db/proxy_webidbobjectstore_impl.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'content/common') 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&, - const WebKit::WebVector >&, + const WebKit::WebVector&, WebKit::WebExceptionCode&); virtual void deleteFunction(const WebKit::WebIDBKeyRange& key_range, WebKit::WebIDBCallbacks* callbacks, -- cgit v1.1