summaryrefslogtreecommitdiffstats
path: root/ceee/common
diff options
context:
space:
mode:
authorrobertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-14 20:32:00 +0000
committerrobertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-14 20:32:00 +0000
commit5ddd1eaaaaa5512ee780789bfb0164a97bca933d (patch)
treed851d2b162561286fb86308415648ee6eee44984 /ceee/common
parentbefe84bbceb40e25af72c21aa6f8492d1eb7ae84 (diff)
downloadchromium_src-5ddd1eaaaaa5512ee780789bfb0164a97bca933d.zip
chromium_src-5ddd1eaaaaa5512ee780789bfb0164a97bca933d.tar.gz
chromium_src-5ddd1eaaaaa5512ee780789bfb0164a97bca933d.tar.bz2
Revert 69165 - Merge the installer, installer_util and setup_util namespaces into a single installer namespace.
BUG=61609 TEST=NONE Review URL: http://codereview.chromium.org/5729004 TBR=robertshield@chromium.org Review URL: http://codereview.chromium.org/5756007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69167 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ceee/common')
-rw-r--r--ceee/common/install_utils.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/ceee/common/install_utils.cc b/ceee/common/install_utils.cc
index e342023..e737d5b 100644
--- a/ceee/common/install_utils.cc
+++ b/ceee/common/install_utils.cc
@@ -13,7 +13,7 @@
#include "base/path_service.h"
#include "chrome/installer/util/util_constants.h"
-namespace installer {
+namespace installer_util {
namespace switches {
// TODO(joi@chromium.org) Move to chrome/installer/util_constants.h
// when we refactor this logic to be in the installer rather than
@@ -43,10 +43,10 @@ bool ShouldRegisterImpl(bool check_firefox) {
// also be provided.
CommandLine current_command_line(CommandLine::NO_PROGRAM);
current_command_line.ParseFromString(::GetCommandLine());
- if (current_command_line.HasSwitch(installer::switches::kEnableCeee) &&
- current_command_line.HasSwitch(installer::switches::kChromeFrame) &&
+ if (current_command_line.HasSwitch(installer_util::switches::kEnableCeee) &&
+ current_command_line.HasSwitch(installer_util::switches::kChromeFrame) &&
(!check_firefox || current_command_line.HasSwitch(
- installer::switches::kEnableFfCeee))) {
+ installer_util::switches::kEnableFfCeee))) {
return true;
} else {
return false;