diff options
author | tbreisacher@chromium.org <tbreisacher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-22 20:25:29 +0000 |
---|---|---|
committer | tbreisacher@chromium.org <tbreisacher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-22 20:25:29 +0000 |
commit | f4d6054e0df09c5de34358f99fb6e751fc1c4e2b (patch) | |
tree | d9c6c8be457d8859db4abca03fa45108bb675cd5 /chrome/test/ui/ui_test.h | |
parent | 1089397a1e5e33db3dc9e291f4c846c0d0dcf560 (diff) | |
download | chromium_src-f4d6054e0df09c5de34358f99fb6e751fc1c4e2b.zip chromium_src-f4d6054e0df09c5de34358f99fb6e751fc1c4e2b.tar.gz chromium_src-f4d6054e0df09c5de34358f99fb6e751fc1c4e2b.tar.bz2 |
[uber] Redoing the homepage selection UI
Third Time's The Charm Edition!
Resubmit of http://codereview.chromium.org/9387019 which was a resubmit of http://codereview.chromium.org/9296038
BUG=111139
TEST=SessionStartupPrefTest.HomePageMigration
TBR=ben@chromium.org,estade@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9423027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123096 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/ui/ui_test.h')
-rw-r--r-- | chrome/test/ui/ui_test.h | 10 |
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. |