diff options
author | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-31 14:23:42 +0000 |
---|---|---|
committer | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-31 14:23:42 +0000 |
commit | 7638b15cfd0a0ae642d65161ab0ea361e23ae4c6 (patch) | |
tree | 6bd4261b8317ddc836cf30996ac897975f61f108 /chrome/renderer/indexed_db_dispatcher.h | |
parent | 9a86b04e0f0df56fcc55eee8b1d380cdc83bc54b (diff) | |
download | chromium_src-7638b15cfd0a0ae642d65161ab0ea361e23ae4c6.zip chromium_src-7638b15cfd0a0ae642d65161ab0ea361e23ae4c6.tar.gz chromium_src-7638b15cfd0a0ae642d65161ab0ea361e23ae4c6.tar.bz2 |
Implement the Chrome half of setVersion.
TEST=setVersion layout test works in non-single-process-mode
BUG=none
Review URL: http://codereview.chromium.org/3116043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57988 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/indexed_db_dispatcher.h')
-rw-r--r-- | chrome/renderer/indexed_db_dispatcher.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/renderer/indexed_db_dispatcher.h b/chrome/renderer/indexed_db_dispatcher.h index c2602e0..c74bdfe 100644 --- a/chrome/renderer/indexed_db_dispatcher.h +++ b/chrome/renderer/indexed_db_dispatcher.h @@ -45,6 +45,11 @@ class IndexedDBDispatcher { const string16& name, WebKit::WebIDBCallbacks* callbacks, int32 idb_database_id); + void RequestIDBDatabaseSetVersion( + const string16& version, + WebKit::WebIDBCallbacks* callbacks, + int32 idb_database_id); + void RequestIDBObjectStoreGet( const IndexedDBKey& key, WebKit::WebIDBCallbacks* callbacks, int32 idb_object_store_id); |