summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_browsertest.cc
diff options
context:
space:
mode:
authorerikkay@chromium.org <erikkay@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-02 22:56:38 +0000
committererikkay@chromium.org <erikkay@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-02 22:56:38 +0000
commit385e5b56919c8e55dffb814c19edd33839dd7b50 (patch)
tree13b9cbb785e109e5f7f43552aab7b09ac0b9e229 /chrome/browser/browser_browsertest.cc
parent15197f69d61f786fd953dd44ac417100c055433c (diff)
downloadchromium_src-385e5b56919c8e55dffb814c19edd33839dd7b50.zip
chromium_src-385e5b56919c8e55dffb814c19edd33839dd7b50.tar.gz
chromium_src-385e5b56919c8e55dffb814c19edd33839dd7b50.tar.bz2
enable apps by default
BUG=none TEST=run Chrome with no command line flags, apps should be enabled Review URL: http://codereview.chromium.org/3015043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54624 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_browsertest.cc')
-rw-r--r--chrome/browser/browser_browsertest.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/chrome/browser/browser_browsertest.cc b/chrome/browser/browser_browsertest.cc
index 528c9e4..97cda48 100644
--- a/chrome/browser/browser_browsertest.cc
+++ b/chrome/browser/browser_browsertest.cc
@@ -131,13 +131,6 @@ class BrowserTest : public ExtensionBrowserTest {
}
protected:
- virtual void SetUpCommandLine(CommandLine* command_line) {
- ExtensionBrowserTest::SetUpCommandLine(command_line);
-
- // Needed for phantom tab tests.
- command_line->AppendSwitch(switches::kEnableApps);
- }
-
// In RTL locales wrap the page title with RTL embedding characters so that it
// matches the value returned by GetWindowTitle().
std::wstring LocaleWindowCaptionFromPageTitle(
@@ -624,11 +617,6 @@ class BrowserAppRefocusTest : public ExtensionBrowserTest {
profile_(NULL) {}
protected:
- virtual void SetUpCommandLine(CommandLine* command_line) {
- ExtensionBrowserTest::SetUpCommandLine(command_line);
- command_line->AppendSwitch(switches::kEnableApps);
- }
-
// Common setup for all tests. Can't use SetUpInProcessBrowserTestFixture
// because starting the http server crashes if called from that function.
// The IO thread is not set up at that point.