| 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;
|
| }
|
|
|