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

Unified Diff: chrome/test/webdriver/webdriver_automation.cc

Issue 14977013: Delete Automation[Tab/Renderer]Helper and users. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update now that 202087 is committed Created 7 years, 7 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/test/pyautolib/pyauto.py ('k') | content/public/common/content_switches.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/webdriver_automation.cc
diff --git a/chrome/test/webdriver/webdriver_automation.cc b/chrome/test/webdriver/webdriver_automation.cc
index 37534114e8154c86d79ce50cdb5adefba3bb6140..2715293d38fbc65b0fd84bcdac2877c1c6947051 100644
--- a/chrome/test/webdriver/webdriver_automation.cc
+++ b/chrome/test/webdriver/webdriver_automation.cc
@@ -714,7 +714,7 @@ void Automation::SendWebMouseEvent(const WebViewId& view_id,
return;
automation::Error auto_error;
- if (!SendWebMouseEventJSONRequest(
+ if (!SendWebMouseEventJSONRequestDeprecated(
automation(), view_locator, event, &auto_error)) {
*error = Error::FromAutomationError(auto_error);
}
@@ -729,7 +729,7 @@ void Automation::CaptureEntirePageAsPNG(const WebViewId& view_id,
return;
automation::Error auto_error;
- if (!SendCaptureEntirePageJSONRequest(
+ if (!SendCaptureEntirePageJSONRequestDeprecated(
automation(), view_locator, path, &auto_error)) {
*error = Error::FromAutomationError(auto_error);
}
@@ -745,7 +745,7 @@ void Automation::HeapProfilerDump(const WebViewId& view_id,
return;
automation::Error auto_error;
- if (!SendHeapProfilerDumpJSONRequest(
+ if (!SendHeapProfilerDumpJSONRequestDeprecated(
automation(), view_locator, reason, &auto_error)) {
*error = Error::FromAutomationError(auto_error);
}
@@ -976,7 +976,8 @@ void Automation::GetChromeDriverAutomationVersion(int* version, Error** error) {
void Automation::WaitForAllViewsToStopLoading(Error** error) {
automation::Error auto_error;
- if (!SendWaitForAllViewsToStopLoadingJSONRequest(automation(), &auto_error))
+ if (!SendWaitForAllViewsToStopLoadingJSONRequestDeprecated(
+ automation(), &auto_error))
*error = Error::FromAutomationError(auto_error);
}
« no previous file with comments | « chrome/test/pyautolib/pyauto.py ('k') | content/public/common/content_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698