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

Unified Diff: chrome/test/pyautolib/pyautolib.h

Issue 10692067: Convert PyAuto's NavigateToURL, GetActiveTabIndex, Refresh, RefreshActiveTab, and AppendTab to the … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Nirnimesh's comments. Created 8 years, 5 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') | chrome/test/pyautolib/pyautolib.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/pyautolib/pyautolib.h
diff --git a/chrome/test/pyautolib/pyautolib.h b/chrome/test/pyautolib/pyautolib.h
index 5cf48af75125da9e07445f5fcc7ce1920ff0a62c..2c9f640a1493dc3dd22984af3a0ae702360bfc60 100644
--- a/chrome/test/pyautolib/pyautolib.h
+++ b/chrome/test/pyautolib/pyautolib.h
@@ -70,28 +70,11 @@ class PyUITestBase : public UITestBase {
virtual void SetUp() OVERRIDE;
virtual void TearDown() OVERRIDE;
- // Navigate to the given URL in the active tab. Blocks until page loaded.
- void NavigateToURL(const char* url_string);
-
- // Navigate to the given URL in the active tab in the given window.
- void NavigateToURL(const char* url_string, int window_index);
-
- // Navigate to the given URL in given tab in the given window.
- // Blocks until page loaded.
- void NavigateToURL(const char* url_string, int window_index, int tab_index);
-
- // Reloads the active tab in the given window.
- // Blocks until page reloaded.
- void ReloadActiveTab(int window_index = 0);
-
// Get the URL of the active tab.
GURL GetActiveTabURL(int window_index = 0);
int GetTabCount(int window_index = 0);
- // Appends a new tab with the given URL in the given or first browser window.
- bool AppendTab(const GURL& tab_url, int window_index = 0);
-
// Activate the tab at the given zero-based index in the given or first
// browser window. Also brings the window to front.
bool ActivateTab(int tab_index, int window_index = 0);
« no previous file with comments | « chrome/test/pyautolib/pyauto.py ('k') | chrome/test/pyautolib/pyautolib.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698