diff options
author | dgrogan@chromium.org <dgrogan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-15 01:37:46 +0000 |
---|---|---|
committer | dgrogan@chromium.org <dgrogan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-15 01:37:46 +0000 |
commit | d17e1b336b7e2bc19334716fc0e1521b1029d095 (patch) | |
tree | 295c72834c3abb721595bb9ad6f99212baad92f3 /content | |
parent | e3ff8ee22b683f1b7753a2246265e393e9b0ad44 (diff) | |
download | chromium_src-d17e1b336b7e2bc19334716fc0e1521b1029d095.zip chromium_src-d17e1b336b7e2bc19334716fc0e1521b1029d095.tar.gz chromium_src-d17e1b336b7e2bc19334716fc0e1521b1029d095.tar.bz2 |
Remove routing_id from IndexedDB IPC messages
They are never used.
BUG=103951
Review URL: http://codereview.chromium.org/8536029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110010 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/common/indexed_db_messages.h | 6 | ||||
-rw-r--r-- | content/renderer/indexed_db_dispatcher.cc | 3 |
2 files changed, 0 insertions, 9 deletions
diff --git a/content/common/indexed_db_messages.h b/content/common/indexed_db_messages.h index 4830f0e..118106e 100644 --- a/content/common/indexed_db_messages.h +++ b/content/common/indexed_db_messages.h @@ -22,8 +22,6 @@ IPC_ENUM_TRAITS(WebKit::WebIDBObjectStore::PutMode) // Used to enumerate indexed databases. IPC_STRUCT_BEGIN(IndexedDBHostMsg_FactoryGetDatabaseNames_Params) - // The routing ID of the view initiating the open. - IPC_STRUCT_MEMBER(int32, routing_id) // The response should have this id. IPC_STRUCT_MEMBER(int32, response_id) // The origin doing the initiating. @@ -32,8 +30,6 @@ IPC_STRUCT_END() // Used to open an indexed database. IPC_STRUCT_BEGIN(IndexedDBHostMsg_FactoryOpen_Params) - // The routing ID of the view initiating the open. - IPC_STRUCT_MEMBER(int32, routing_id) // The response should have this id. IPC_STRUCT_MEMBER(int32, response_id) // The origin doing the initiating. @@ -44,8 +40,6 @@ IPC_STRUCT_END() // Used to delete an indexed database. IPC_STRUCT_BEGIN(IndexedDBHostMsg_FactoryDeleteDatabase_Params) - // The routing ID of the view initiating the deletion. - IPC_STRUCT_MEMBER(int32, routing_id) // The response should have this id. IPC_STRUCT_MEMBER(int32, response_id) // The origin doing the initiating. diff --git a/content/renderer/indexed_db_dispatcher.cc b/content/renderer/indexed_db_dispatcher.cc index 115e2b2..7fd0954 100644 --- a/content/renderer/indexed_db_dispatcher.cc +++ b/content/renderer/indexed_db_dispatcher.cc @@ -120,7 +120,6 @@ void IndexedDBDispatcher::RequestIDBFactoryOpen( return; // We must be shutting down. IndexedDBHostMsg_FactoryOpen_Params params; - params.routing_id = render_view->routing_id(); params.response_id = pending_callbacks_.Add(callbacks.release()); params.origin = origin; params.name = name; @@ -140,7 +139,6 @@ void IndexedDBDispatcher::RequestIDBFactoryGetDatabaseNames( return; // We must be shutting down. IndexedDBHostMsg_FactoryGetDatabaseNames_Params params; - params.routing_id = render_view->routing_id(); params.response_id = pending_callbacks_.Add(callbacks.release()); params.origin = origin; RenderThreadImpl::current()->Send( @@ -161,7 +159,6 @@ void IndexedDBDispatcher::RequestIDBFactoryDeleteDatabase( return; // We must be shutting down. IndexedDBHostMsg_FactoryDeleteDatabase_Params params; - params.routing_id = render_view->routing_id(); params.response_id = pending_callbacks_.Add(callbacks.release()); params.origin = origin; params.name = name; |