diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-19 18:00:55 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-19 18:00:55 +0000 |
commit | d53a76b8bc94f47de9e22d345d849d6c5e5117ea (patch) | |
tree | d05fbb167ca14b7dd36060cb6d2ceb123581728b /chrome/test/automation/tab_proxy.h | |
parent | 38355fcc73d873e8e8e56b4d8c46f0d703a36543 (diff) | |
download | chromium_src-d53a76b8bc94f47de9e22d345d849d6c5e5117ea.zip chromium_src-d53a76b8bc94f47de9e22d345d849d6c5e5117ea.tar.gz chromium_src-d53a76b8bc94f47de9e22d345d849d6c5e5117ea.tar.bz2 |
Revert "Add automation call to wait for multiple navigations."
Broke the page cyclers.
TBR=tony
Review URL: http://codereview.chromium.org/174065
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23717 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation/tab_proxy.h')
-rw-r--r-- | chrome/test/automation/tab_proxy.h | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/chrome/test/automation/tab_proxy.h b/chrome/test/automation/tab_proxy.h index 2c19bea..5e83227 100644 --- a/chrome/test/automation/tab_proxy.h +++ b/chrome/test/automation/tab_proxy.h @@ -77,23 +77,13 @@ class TabProxy : public AutomationResourceProxy { // Navigates to a url. This method accepts the same kinds of URL input that // can be passed to Chrome on the command line. This is a synchronous call and // hence blocks until the navigation completes. - AutomationMsg_NavigationResponseValues NavigateToURL( - const GURL& url); - - // Navigates to a url. This method accepts the same kinds of URL input that - // can be passed to Chrome on the command line. This is a synchronous call and - // hence blocks until the |number_of_navigations| navigations complete. - AutomationMsg_NavigationResponseValues - NavigateToURLBlockUntilNavigationsComplete(const GURL& url, - int number_of_navigations); + AutomationMsg_NavigationResponseValues NavigateToURL(const GURL& url); // Navigates to a url. This is same as NavigateToURL with a timeout option. - // The function blocks until the |number_of_navigations| navigations - // completes or timeout (in milliseconds) occurs. If return after timeout, - // is_timeout is set to true. + // The function returns until the navigation completes or timeout (in + // milliseconds) occurs. If return after timeout, is_timeout is set to true. AutomationMsg_NavigationResponseValues NavigateToURLWithTimeout( - const GURL& url, int number_of_navigations, uint32 timeout_ms, - bool* is_timeout); + const GURL& url, uint32 timeout_ms, bool* is_timeout); // Navigates to a url in an externally hosted tab. // This method accepts the same kinds of URL input that |