summaryrefslogtreecommitdiffstats
path: root/chrome/test/ui/ui_test.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-17 00:57:26 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-17 00:57:26 +0000
commit9c1a5430da331b56b19cc6c6e355ae2091b0af78 (patch)
tree2d1217458d50ce1a1e41ed9c95fbe4b8a01809b3 /chrome/test/ui/ui_test.h
parentecbff386b900dee166f112ae33593bcead15f746 (diff)
downloadchromium_src-9c1a5430da331b56b19cc6c6e355ae2091b0af78.zip
chromium_src-9c1a5430da331b56b19cc6c6e355ae2091b0af78.tar.gz
chromium_src-9c1a5430da331b56b19cc6c6e355ae2091b0af78.tar.bz2
Remove all the unnused automation IPCs. These were used by UI tests that have been converted to browser_tests.
BUG=121574 Review URL: https://chromiumcodereview.appspot.com/10388175 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137593 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/ui/ui_test.h')
-rw-r--r--chrome/test/ui/ui_test.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/chrome/test/ui/ui_test.h b/chrome/test/ui/ui_test.h
index bd1931d..167a00d 100644
--- a/chrome/test/ui/ui_test.h
+++ b/chrome/test/ui/ui_test.h
@@ -146,11 +146,6 @@ class UITestBase {
bool WaitForBookmarkBarVisibilityChange(BrowserProxy* browser,
bool wait_for_open);
- // Sends the request to close the browser without blocking.
- // This is so we can interact with dialogs opened on browser close,
- // e.g. the beforeunload confirm dialog.
- void CloseBrowserAsync(BrowserProxy* browser) const;
-
// Closes the specified browser. Returns true if the browser was closed.
// This call is blocking. |application_closed| is set to true if this was
// the last browser window (and therefore as a result of it closing the
@@ -418,16 +413,6 @@ class UITest : public UITestBase, public PlatformTest {
const char* cookie_name,
int timeout_ms);
- // Checks whether the download shelf is visible in the current browser, giving
- // it a chance to appear (we don't know the exact timing) while finishing as
- // soon as possible.
- bool WaitForDownloadShelfVisible(BrowserProxy* browser);
-
- // Checks whether the download shelf is invisible in the current browser,
- // giving it a chance to appear (we don't know the exact timing) while
- // finishing as soon as possible.
- bool WaitForDownloadShelfInvisible(BrowserProxy* browser);
-
// Waits until the Find window has become fully visible (if |wait_for_open| is
// true) or fully hidden (if |wait_for_open| is false). This function can time
// out (return false) if the window doesn't appear within a specific time.
@@ -445,10 +430,6 @@ class UITest : public UITestBase, public PlatformTest {
void NavigateToURLAsync(const GURL& url);
private:
- // Waits for download shelf visibility or invisibility.
- bool WaitForDownloadShelfVisibilityChange(BrowserProxy* browser,
- bool wait_for_open);
-
MessageLoop message_loop_; // Enables PostTask to main thread.
};