diff options
author | tbreisacher@chromium.org <tbreisacher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-17 04:43:26 +0000 |
---|---|---|
committer | tbreisacher@chromium.org <tbreisacher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-17 04:43:26 +0000 |
commit | bbb445ce1779864b088a1d8138870d55b3165b2e (patch) | |
tree | 753ea6cbe3b8c92f5491c5cf5dc8d1f1f2962c4b /chrome/test/ui/ui_test.h | |
parent | cabb7642f5606ea8877b0c7bc26b94a0692b7731 (diff) | |
download | chromium_src-bbb445ce1779864b088a1d8138870d55b3165b2e.zip chromium_src-bbb445ce1779864b088a1d8138870d55b3165b2e.tar.gz chromium_src-bbb445ce1779864b088a1d8138870d55b3165b2e.tar.bz2 |
[uber] Redoing the homepage selection UI
Resubmit of http://codereview.chromium.org/9296038
BUG=111139
TEST=SessionStartupPrefTest.HomePageMigration
Review URL: https://chromiumcodereview.appspot.com/9387019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@122458 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. |