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-04-05 15:26:17 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-05 15:26:17 +0000
commitb9870843634f579f18be8b65d8a3dca59656ae82 (patch)
treec3d2c0af426251b1cbddde555aaa2c222b821ff7 /chrome/test/ui/ui_test.h
parent2390e7fb667d60a8a6fc7a1d002e24f12820ab2c (diff)
downloadchromium_src-b9870843634f579f18be8b65d8a3dca59656ae82.zip
chromium_src-b9870843634f579f18be8b65d8a3dca59656ae82.tar.gz
chromium_src-b9870843634f579f18be8b65d8a3dca59656ae82.tar.bz2
Convert SavePage ui_test to a browser_test.
BUG=121574 Review URL: https://chromiumcodereview.appspot.com/9992007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@130928 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/ui/ui_test.h')
-rw-r--r--chrome/test/ui/ui_test.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/chrome/test/ui/ui_test.h b/chrome/test/ui/ui_test.h
index 5a41faf..e4c2389 100644
--- a/chrome/test/ui/ui_test.h
+++ b/chrome/test/ui/ui_test.h
@@ -174,9 +174,6 @@ class UITestBase {
// after the browser process has terminated.
bool CloseBrowser(BrowserProxy* browser, bool* application_closed) const;
- // Gets the directory for the currently active profile in the browser.
- FilePath GetDownloadDirectory();
-
// Gets the executable file path of the Chrome browser process.
const FilePath::CharType* GetExecutablePath();
@@ -404,17 +401,6 @@ class UITest : public UITestBase, public PlatformTest {
// TODO(phajdan.jr): Move to test_file_util if we need it in more places.
bool EvictFileFromSystemCacheWrapper(const FilePath& path);
- // Wait for |generated_file| to be ready and then compare it with
- // |original_file| to see if they're identical or not if |compare_file| is
- // true. If |need_equal| is true, they need to be identical. Otherwise,
- // they should be different. This function will delete the generated file if
- // the parameter |delete_generated_file| is true.
- void WaitForGeneratedFileAndCheck(const FilePath& generated_file,
- const FilePath& original_file,
- bool compare_files,
- bool need_equal,
- bool delete_generated_file);
-
// Polls the tab for a JavaScript condition and returns once one of the
// following conditions hold true:
// - The JavaScript condition evaluates to true (return true).