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

Unified Diff: content/common/indexed_db_messages.h

Issue 8536029: Remove routing_id from IndexedDB IPC messages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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/renderer/indexed_db_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/indexed_db_messages.h
diff --git a/content/common/indexed_db_messages.h b/content/common/indexed_db_messages.h
index 4830f0e7a56ce9e3676e364da890beaad162f218..118106ecb84cd26cbb5c8e49aecd87ccb19421dd 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.
« no previous file with comments | « no previous file | content/renderer/indexed_db_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698