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

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

Issue 10383221: IndexedDB: Remove IDBIndex.storeName property (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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/common/indexed_db/indexed_db_messages.h » ('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.cc
diff --git a/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc b/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
index 157e2edea315e39f5ed62ee117c8f3c7e632f215..8d4bdff6e8c33bfc7cf61c0706395ae5a4a9bf9a 100644
--- a/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
+++ b/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
@@ -503,7 +503,6 @@ bool IndexedDBDispatcherHost::IndexDispatcherHost::OnMessageReceived(
IPC_BEGIN_MESSAGE_MAP_EX(IndexedDBDispatcherHost::IndexDispatcherHost,
message, *msg_is_ok)
IPC_MESSAGE_HANDLER(IndexedDBHostMsg_IndexName, OnName)
- IPC_MESSAGE_HANDLER(IndexedDBHostMsg_IndexStoreName, OnStoreName)
IPC_MESSAGE_HANDLER(IndexedDBHostMsg_IndexKeyPath, OnKeyPath)
IPC_MESSAGE_HANDLER(IndexedDBHostMsg_IndexUnique, OnUnique)
IPC_MESSAGE_HANDLER(IndexedDBHostMsg_IndexMultiEntry, OnMultiEntry)
@@ -529,12 +528,6 @@ void IndexedDBDispatcherHost::IndexDispatcherHost::OnName(
parent_->SyncGetter<string16>(&map_, object_id, name, &WebIDBIndex::name);
}
-void IndexedDBDispatcherHost::IndexDispatcherHost::OnStoreName(
- int32 object_id, string16* store_name) {
- parent_->SyncGetter<string16>(
- &map_, object_id, store_name, &WebIDBIndex::storeName);
-}
-
void IndexedDBDispatcherHost::IndexDispatcherHost::OnKeyPath(
int32 object_id, IndexedDBKeyPath* key_path) {
WebIDBIndex* idb_index = parent_->GetOrTerminateProcess(&map_, object_id);
« no previous file with comments | « no previous file | content/common/indexed_db/indexed_db_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698