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

Unified Diff: chrome/renderer/automation/dom_automation_controller.cc

Issue 7631063: Prefix all IPC messages used by src\chrome with Chrome. For e.g ChromeViewMsg_, ChromeViewHostMsg... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 | « chrome/common/render_messages.h ('k') | chrome/renderer/blocked_plugin.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/automation/dom_automation_controller.cc
===================================================================
--- chrome/renderer/automation/dom_automation_controller.cc (revision 97468)
+++ chrome/renderer/automation/dom_automation_controller.cc (working copy)
@@ -78,7 +78,9 @@
}
bool succeeded = sender_->Send(
- new ViewHostMsg_DomOperationResponse(routing_id_, json, automation_id_));
+ new ChromeViewHostMsg_DomOperationResponse(routing_id_,
+ json,
+ automation_id_));
result->Set(succeeded);
automation_id_ = MSG_ROUTING_NONE;
@@ -110,7 +112,9 @@
std::string json = args[0].ToString();
result->Set(sender_->Send(
- new ViewHostMsg_DomOperationResponse(routing_id_, json, automation_id_)));
+ new ChromeViewHostMsg_DomOperationResponse(routing_id_,
+ json,
+ automation_id_)));
automation_id_ = MSG_ROUTING_NONE;
}
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/blocked_plugin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698