summaryrefslogtreecommitdiffstats
path: root/chrome/browser/utility_process_host.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/utility_process_host.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/utility_process_host.cc')
-rw-r--r--chrome/browser/utility_process_host.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/utility_process_host.cc b/chrome/browser/utility_process_host.cc
index 4e3852f..7b6772e 100644
--- a/chrome/browser/utility_process_host.cc
+++ b/chrome/browser/utility_process_host.cc
@@ -90,8 +90,8 @@ bool UtilityProcessHost::StartProcess(const FilePath& exposed_dir) {
if (browser_command_line.HasSwitch(switches::kChromeFrame))
cmd_line->AppendSwitch(switches::kChromeFrame);
- if (browser_command_line.HasSwitch(switches::kEnableApps))
- cmd_line->AppendSwitch(switches::kEnableApps);
+ if (browser_command_line.HasSwitch(switches::kDisableApps))
+ cmd_line->AppendSwitch(switches::kDisableApps);
if (browser_command_line.HasSwitch(
switches::kEnableExperimentalExtensionApis)) {