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

Unified Diff: content/renderer/indexed_db_dispatcher.cc

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 | « content/common/indexed_db_messages.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/indexed_db_dispatcher.cc
diff --git a/content/renderer/indexed_db_dispatcher.cc b/content/renderer/indexed_db_dispatcher.cc
index 115e2b2389d6e732cc7c25fd22ee7bcf236e1ff8..7fd09548c8df58bc5ba6dc7346cb46e653b47cac 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;
« no previous file with comments | « content/common/indexed_db_messages.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698