| Index: content/common/indexed_db/indexed_db_dispatcher.h
|
| diff --git a/content/common/indexed_db/indexed_db_dispatcher.h b/content/common/indexed_db/indexed_db_dispatcher.h
|
| index 1872eebd135d54c884bca53ede54dae9e7484e76..8d80047ec881cde78664c779e895371db989e9be 100644
|
| --- a/content/common/indexed_db/indexed_db_dispatcher.h
|
| +++ b/content/common/indexed_db/indexed_db_dispatcher.h
|
| @@ -20,6 +20,7 @@
|
| #include "webkit/glue/worker_task_runner.h"
|
|
|
| class IndexedDBKey;
|
| +class IndexedDBKeyRange;
|
| struct IndexedDBMsg_CallbacksSuccessCursorContinue_Params;
|
| struct IndexedDBMsg_CallbacksSuccessCursorPrefetch_Params;
|
| struct IndexedDBMsg_CallbacksSuccessIDBCursor_Params;
|
| @@ -164,6 +165,13 @@ class IndexedDBDispatcher : public webkit_glue::WorkerTaskRunner::Observer {
|
| const WebKit::WebIDBTransaction& transaction,
|
| WebKit::WebExceptionCode* ec);
|
|
|
| + void RequestIDBObjectStoreDeleteRange(
|
| + const IndexedDBKeyRange& key_range,
|
| + WebKit::WebIDBCallbacks* callbacks,
|
| + int32 idb_object_store_id,
|
| + const WebKit::WebIDBTransaction& transaction,
|
| + WebKit::WebExceptionCode* ec);
|
| +
|
| void RequestIDBObjectStoreClear(
|
| WebKit::WebIDBCallbacks* callbacks,
|
| int32 idb_object_store_id,
|
|
|