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

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

Issue 10657011: IndexedDB: Remove IPC plumbing for obsolete property accessors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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
« no previous file with comments | « no previous file | content/browser/in_process_webkit/indexed_db_dispatcher_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 c4537e8c536a9534feb5871fe0eec40a14d50800..07010d9c698efc28d18f8afddf80cde178461974 100644
--- a/content/browser/in_process_webkit/indexed_db_dispatcher_host.h
+++ b/content/browser/in_process_webkit/indexed_db_dispatcher_host.h
@@ -119,10 +119,6 @@ class IndexedDBDispatcherHost : public content::BrowserMessageFilter {
void OnMetadata(int32 idb_database_id,
IndexedDBDatabaseMetadata* metadata);
- void OnName(int32 idb_database_id, string16* name);
- void OnVersion(int32 idb_database_id, string16* version);
- void OnObjectStoreNames(int32 idb_database_id,
- std::vector<string16>* object_stores);
void OnCreateObjectStore(
const IndexedDBHostMsg_DatabaseCreateObjectStore_Params& params,
int32* object_store_id, WebKit::WebExceptionCode* ec);
@@ -158,11 +154,6 @@ class IndexedDBDispatcherHost : public content::BrowserMessageFilter {
bool OnMessageReceived(const IPC::Message& message, bool *msg_is_ok);
void Send(IPC::Message* message);
- void OnName(int32 idb_index_id, string16* name);
- void OnStoreName(int32 idb_index_id, string16* store_name);
- void OnKeyPath(int32 idb_index_id, content::IndexedDBKeyPath* key_path);
- void OnUnique(int32 idb_index_id, bool* unique);
- void OnMultiEntry(int32 idb_index_id, bool* multi_entry);
void OnOpenObjectCursor(
const IndexedDBHostMsg_IndexOpenCursor_Params& params,
WebKit::WebExceptionCode* ec);
@@ -196,12 +187,6 @@ class IndexedDBDispatcherHost : public content::BrowserMessageFilter {
bool OnMessageReceived(const IPC::Message& message, bool *msg_is_ok);
void Send(IPC::Message* message);
- void OnName(int32 idb_object_store_id, string16* name);
- void OnKeyPath(int32 idb_object_store_id,
- content::IndexedDBKeyPath* keyPath);
- void OnIndexNames(int32 idb_object_store_id,
- std::vector<string16>* index_names);
- void OnAutoIncrement(int32 idb_object_store_id, bool* auto_increment);
void OnGet(int idb_object_store_id,
int32 thread_id,
int32 response_id,
« no previous file with comments | « no previous file | content/browser/in_process_webkit/indexed_db_dispatcher_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698