diff options
author | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-26 23:37:37 +0000 |
---|---|---|
committer | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-26 23:37:37 +0000 |
commit | 9919178d30c364af176145bbd1ce616ee0c51757 (patch) | |
tree | 1716e70f4b681eec51c83bb1f650bde50eeddd34 /content/common/indexed_db/indexed_db_dispatcher.h | |
parent | 36df8e311ebab69d38618b955db473ac6d447d20 (diff) | |
download | chromium_src-9919178d30c364af176145bbd1ce616ee0c51757.zip chromium_src-9919178d30c364af176145bbd1ce616ee0c51757.tar.gz chromium_src-9919178d30c364af176145bbd1ce616ee0c51757.tar.bz2 |
Plumb through the rest of OnSuccessWithKey
BUG=129471
TEST=
Review URL: https://chromiumcodereview.appspot.com/10834039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148653 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/indexed_db/indexed_db_dispatcher.h')
-rw-r--r-- | content/common/indexed_db/indexed_db_dispatcher.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/content/common/indexed_db/indexed_db_dispatcher.h b/content/common/indexed_db/indexed_db_dispatcher.h index 03fa7de..250b1f3 100644 --- a/content/common/indexed_db/indexed_db_dispatcher.h +++ b/content/common/indexed_db/indexed_db_dispatcher.h @@ -37,6 +37,7 @@ class WebIDBTransaction; namespace content { class IndexedDBKey; +class IndexedDBKeyPath; class IndexedDBKeyRange; class SerializedScriptValue; } @@ -242,6 +243,12 @@ class CONTENT_EXPORT IndexedDBDispatcher int32 thread_id, int32 response_id, const content::SerializedScriptValue& value); + void OnSuccessSerializedScriptValueWithKey( + int32 thread_id, + int32 response_id, + const content::SerializedScriptValue& value, + const content::IndexedDBKey& primary_key, + const content::IndexedDBKeyPath& key_path); void OnError(int32 thread_id, int32 response_id, int code, |