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

Unified Diff: chrome/test/automation/automation_json_requests.cc

Issue 10534163: First pass at refactoring pyautolib in preparation for removing proxy dependencies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Previous commit was reverted. Changed IPCs to be backwards compatible with old chrome binaries. Created 8 years, 6 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/automation_messages_internal.h ('k') | chrome/test/automation/browser_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/automation/automation_json_requests.cc
diff --git a/chrome/test/automation/automation_json_requests.cc b/chrome/test/automation/automation_json_requests.cc
index cdb6272e431639aed80be645117320401d988d1c..d44c5e8984f5494f863001d9f22a5e6504264d49 100644
--- a/chrome/test/automation/automation_json_requests.cc
+++ b/chrome/test/automation/automation_json_requests.cc
@@ -203,7 +203,7 @@ bool SendAutomationJSONRequest(AutomationMessageSender* sender,
int timeout_ms,
std::string* reply,
bool* success) {
- return sender->Send(new AutomationMsg_SendJSONRequest(
+ return sender->Send(new AutomationMsg_SendJSONRequestWithBrowserHandle(
-1, request, reply, success), timeout_ms);
}
@@ -212,7 +212,7 @@ bool SendAutomationJSONRequestWithDefaultTimeout(
const std::string& request,
std::string* reply,
bool* success) {
- return sender->Send(new AutomationMsg_SendJSONRequest(
+ return sender->Send(new AutomationMsg_SendJSONRequestWithBrowserHandle(
-1, request, reply, success));
}
« no previous file with comments | « chrome/common/automation_messages_internal.h ('k') | chrome/test/automation/browser_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698