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

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

Issue 11828054: Remove IPC code for old methods. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix merge conflicts Created 7 years, 11 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/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 13c04608360d4293297d52f233715cfdf7d5fd5f..1efd594293136ac13849ea04238195515135ecf8 100644
--- a/content/common/indexed_db/indexed_db_dispatcher.h
+++ b/content/common/indexed_db/indexed_db_dispatcher.h
@@ -17,7 +17,6 @@
#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCursor.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabase.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabaseCallbacks.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBObjectStore.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransaction.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransactionCallbacks.h"
#include "webkit/glue/worker_task_runner.h"
@@ -170,90 +169,6 @@ class CONTENT_EXPORT IndexedDBDispatcher
int64 object_store_id,
WebKit::WebIDBCallbacks* callbacks);
- void RequestIDBIndexOpenObjectCursor(
- const WebKit::WebIDBKeyRange& idb_key_range,
- unsigned short direction,
- WebKit::WebIDBCallbacks* callbacks,
- int32 ipc_index_id,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode* ec);
-
- void RequestIDBIndexOpenKeyCursor(
- const WebKit::WebIDBKeyRange& idb_key_range,
- unsigned short direction,
- WebKit::WebIDBCallbacks* callbacks,
- int32 ipc_index_id,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode* ec);
-
- void RequestIDBIndexCount(
- const WebKit::WebIDBKeyRange& idb_key_range,
- WebKit::WebIDBCallbacks* callbacks,
- int32 ipc_index_id,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode* ec);
-
- void RequestIDBIndexGetObject(
- const IndexedDBKeyRange& key_range,
- WebKit::WebIDBCallbacks* callbacks,
- int32 ipc_index_id,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode* ec);
-
- void RequestIDBIndexGetKey(
- const IndexedDBKeyRange& key_range,
- WebKit::WebIDBCallbacks* callbacks,
- int32 ipc_index_id,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode* ec);
-
- void RequestIDBObjectStoreGet(
- const IndexedDBKeyRange& key_range,
- WebKit::WebIDBCallbacks* callbacks,
- int32 ipc_object_store_id,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode* ec);
-
- void RequestIDBObjectStorePut(
- const SerializedScriptValue& value,
- const IndexedDBKey& key,
- WebKit::WebIDBObjectStore::PutMode putMode,
- WebKit::WebIDBCallbacks* callbacks,
- int32 ipc_object_store_id,
- const WebKit::WebIDBTransaction& transaction,
- const WebKit::WebVector<long long>& indexIds,
- const WebKit::WebVector<WebKit::WebVector<
- WebKit::WebIDBKey> >& indexKeys);
-
- void RequestIDBObjectStoreDelete(
- const IndexedDBKeyRange& key_range,
- WebKit::WebIDBCallbacks* callbacks,
- int32 ipc_object_store_id,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode* ec);
-
- void RequestIDBObjectStoreClear(
- WebKit::WebIDBCallbacks* callbacks,
- int32 ipc_object_store_id,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode* ec);
-
- void RequestIDBObjectStoreOpenCursor(
- const WebKit::WebIDBKeyRange& idb_key_range,
- WebKit::WebIDBCursor::Direction direction,
- WebKit::WebIDBCallbacks* callbacks,
- int32 ipc_object_store_id,
- WebKit::WebIDBTransaction::TaskType task_type,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode* ec);
-
- void RequestIDBObjectStoreCount(
- const WebKit::WebIDBKeyRange& idb_key_range,
- WebKit::WebIDBCallbacks* callbacks,
- int32 ipc_object_store_id,
- const WebKit::WebIDBTransaction& transaction,
- WebKit::WebExceptionCode* ec);
-
void RegisterWebIDBTransactionCallbacks(
WebKit::WebIDBTransactionCallbacks* callbacks,
int32 id);
« no previous file with comments | « content/browser/in_process_webkit/indexed_db_dispatcher_host.cc ('k') | content/common/indexed_db/indexed_db_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698