summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/automation/dom_automation_controller.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/renderer/automation/dom_automation_controller.cc')
-rw-r--r--chrome/renderer/automation/dom_automation_controller.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/chrome/renderer/automation/dom_automation_controller.cc b/chrome/renderer/automation/dom_automation_controller.cc
index 35e7c9a..2daac0b 100644
--- a/chrome/renderer/automation/dom_automation_controller.cc
+++ b/chrome/renderer/automation/dom_automation_controller.cc
@@ -78,7 +78,9 @@ void DomAutomationController::Send(const CppArgumentList& args,
}
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 @@ void DomAutomationController::SendJSON(const CppArgumentList& args,
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;
}