summaryrefslogtreecommitdiffstats
path: root/chrome/test/ui/ui_test.h
diff options
context:
space:
mode:
authortbreisacher@chromium.org <tbreisacher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-23 20:04:53 +0000
committertbreisacher@chromium.org <tbreisacher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-23 20:04:53 +0000
commit66c5c004645eb9539ce6b66e0441f363af4464f1 (patch)
treefe544e2f7c5f402ac24937a23c54652957b0f22a /chrome/test/ui/ui_test.h
parent6aca3362cd7ff2b39ab42410b3a48101898cdd12 (diff)
downloadchromium_src-66c5c004645eb9539ce6b66e0441f363af4464f1.zip
chromium_src-66c5c004645eb9539ce6b66e0441f363af4464f1.tar.gz
chromium_src-66c5c004645eb9539ce6b66e0441f363af4464f1.tar.bz2
[uber] Redoing the homepage selection UI
(Take 4) BUG=111139 TEST=SessionStartupPrefTest.HomePageMigration TBR=csilv@chromium.org, ben@chromium.org, estade@chromium.org Review URL: https://chromiumcodereview.appspot.com/9432041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123306 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/ui/ui_test.h')
-rw-r--r--chrome/test/ui/ui_test.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/chrome/test/ui/ui_test.h b/chrome/test/ui/ui_test.h
index dd54b48..9831ebf 100644
--- a/chrome/test/ui/ui_test.h
+++ b/chrome/test/ui/ui_test.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -83,14 +83,18 @@ class UITestBase {
void LaunchBrowser(const CommandLine& cmdline, bool clear_profile);
#if !defined(OS_MACOSX)
- // This function is deliberately not defined on the Mac because re-using an
+ // These functions are deliberately not defined on the Mac because re-using an
// existing browser process when launching from the command line isn't a
// concept that we support on the Mac; AppleEvents are the Mac solution for
- // the same need. Any test based on this function doesn't apply to the Mac.
+ // the same need. Any test based on these functions doesn't apply to the Mac.
// Launches an another browser process and waits for it to finish. Returns
// true on success.
bool LaunchAnotherBrowserBlockUntilClosed(const CommandLine& cmdline);
+
+ // Same as LaunchAnotherBrowserBlockUntilClosed except that the URL argument
+ // is not used.
+ bool LaunchAnotherBrowserNoUrlArg(const CommandLine& cmdline);
#endif
// Exits out browser instance.