Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(268)

Unified Diff: content/renderer/indexed_db/indexed_db_dispatcher.h

Issue 9389025: IndexedDB: Implement IPC plumbing for IDBObjectStore.delete(IDBKeyRange) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/indexed_db/indexed_db_dispatcher.h
diff --git a/content/renderer/indexed_db/indexed_db_dispatcher.h b/content/renderer/indexed_db/indexed_db_dispatcher.h
index 29d520a85c63d292e2595297d92f89b6599a72ba..421db1aed5b9a5e99f91418f1cd4c1731c22733c 100644
--- a/content/renderer/indexed_db/indexed_db_dispatcher.h
+++ b/content/renderer/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 RequestIDBObjectStoreDelete(
michaeln 2012/02/14 20:39:33 please rename to avoid overloading here... Request
+ 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,

Powered by Google App Engine
This is Rietveld 408576698