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

Unified Diff: content/browser/in_process_webkit/indexed_db_dispatcher_host.h

Issue 10831138: Remove a ton of IPC from landing putWithIndexKeys (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Additional stuff found with lint Created 8 years, 5 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/browser/in_process_webkit/indexed_db_dispatcher_host.h
diff --git a/content/browser/in_process_webkit/indexed_db_dispatcher_host.h b/content/browser/in_process_webkit/indexed_db_dispatcher_host.h
index 2df80977f7aa2345057a78c5470998cbdb9a73bb..9fa208fb2fbdd1c07de2aaf8c29b63bcfc9e23e4 100644
--- a/content/browser/in_process_webkit/indexed_db_dispatcher_host.h
+++ b/content/browser/in_process_webkit/indexed_db_dispatcher_host.h
@@ -6,6 +6,7 @@
#define CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_DISPATCHER_HOST_H_
#include <map>
+#include <vector>
#include "base/basictypes.h"
#include "base/id_map.h"
@@ -97,10 +98,6 @@ class IndexedDBDispatcherHost : public content::BrowserMessageFilter {
ReturnType* GetOrTerminateProcess(
IDMap<ReturnType, IDMapOwnPointer>* map, int32 return_object_id);
- template <typename ReplyType, typename WebObjectType, typename Method>
- void SyncGetter(IDMap<WebObjectType, IDMapOwnPointer>* map, int32 object_id,
- ReplyType* reply, Method method);
-
template <typename ObjectType>
void DestroyObject(IDMap<ObjectType, IDMapOwnPointer>* map, int32 object_id);
@@ -283,7 +280,6 @@ class IndexedDBDispatcherHost : public content::BrowserMessageFilter {
void OnCommit(int32 transaction_id);
void OnAbort(int32 transaction_id);
- void OnMode(int32 transaction_id, int* mode);
void OnObjectStore(int32 transaction_id,
const string16& name,
int32* object_store_id,

Powered by Google App Engine
This is Rietveld 408576698