summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/indexed_db_dispatcher.h
diff options
context:
space:
mode:
authorjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-10 23:06:31 +0000
committerjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-10 23:06:31 +0000
commit68fd32277f83c43013c24070f1c0bdaa3d42e764 (patch)
treeacbf613dfb1f6d16af0fa08a8540ebdc0ca7e426 /chrome/renderer/indexed_db_dispatcher.h
parentf36252e1be07e80903b15b6ed7d9dfdee37daf78 (diff)
downloadchromium_src-68fd32277f83c43013c24070f1c0bdaa3d42e764.zip
chromium_src-68fd32277f83c43013c24070f1c0bdaa3d42e764.tar.gz
chromium_src-68fd32277f83c43013c24070f1c0bdaa3d42e764.tar.bz2
Plumbing for the IDBObjectStore::clear() method.
BUG=71102 TEST=layout test storage/indexeddb/objecstore-basics.html Review URL: http://codereview.chromium.org/6469023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74519 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/indexed_db_dispatcher.h')
-rw-r--r--chrome/renderer/indexed_db_dispatcher.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/renderer/indexed_db_dispatcher.h b/chrome/renderer/indexed_db_dispatcher.h
index 4f5dc44..f7eac21 100644
--- a/chrome/renderer/indexed_db_dispatcher.h
+++ b/chrome/renderer/indexed_db_dispatcher.h
@@ -112,6 +112,12 @@ class IndexedDBDispatcher : public IPC::Channel::Listener {
const WebKit::WebIDBTransaction& transaction,
WebKit::WebExceptionCode* ec);
+ void RequestIDBObjectStoreClear(
+ WebKit::WebIDBCallbacks* callbacks,
+ int32 idb_object_store_id,
+ const WebKit::WebIDBTransaction& transaction,
+ WebKit::WebExceptionCode* ec);
+
void RequestIDBObjectStoreOpenCursor(
const WebKit::WebIDBKeyRange& idb_key_range,
unsigned short direction,