Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7081)

Unified Diff: chrome/installer/util/master_preferences.cc

Issue 5729004: Merge the installer, installer_util and setup_util namespaces into a single i... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/installer/util/master_preferences.h ('k') | chrome/installer/util/master_preferences_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/master_preferences.cc
===================================================================
--- chrome/installer/util/master_preferences.cc (revision 68996)
+++ chrome/installer/util/master_preferences.cc (working copy)
@@ -72,7 +72,7 @@
} // namespace
-namespace installer_util {
+namespace installer {
MasterPreferences::MasterPreferences() : distribution_(NULL),
preferences_read_from_file_(false),
@@ -114,9 +114,9 @@
void MasterPreferences::InitializeFromCommandLine(const CommandLine& cmd_line) {
#if defined(OS_WIN)
- if (cmd_line.HasSwitch(installer_util::switches::kInstallerData)) {
tommi (sloooow) - chröme 2010/12/13 20:28:06 nit: I guess there are several places where this i
robertshield 2010/12/13 21:43:53 Yes, I'd rather keep this a search and replace typ
+ if (cmd_line.HasSwitch(installer::switches::kInstallerData)) {
FilePath prefs_path(cmd_line.GetSwitchValuePath(
- installer_util::switches::kInstallerData));
+ installer::switches::kInstallerData));
this->MasterPreferences::MasterPreferences(prefs_path);
} else {
master_dictionary_.reset(new DictionaryValue());
@@ -131,34 +131,34 @@
const char* cmd_line_switch;
const char* distribution_switch;
} translate_switches[] = {
- { installer_util::switches::kCeee,
- installer_util::master_preferences::kCeee },
- { installer_util::switches::kChrome,
- installer_util::master_preferences::kChrome },
- { installer_util::switches::kChromeFrame,
- installer_util::master_preferences::kChromeFrame },
- { installer_util::switches::kCreateAllShortcuts,
- installer_util::master_preferences::kCreateAllShortcuts },
- { installer_util::switches::kDisableLogging,
- installer_util::master_preferences::kDisableLogging },
- { installer_util::switches::kDoNotCreateShortcuts,
- installer_util::master_preferences::kDoNotCreateShortcuts },
- { installer_util::switches::kMsi,
- installer_util::master_preferences::kMsi },
- { installer_util::switches::kMultiInstall,
- installer_util::master_preferences::kMultiInstall },
- { installer_util::switches::kDoNotRegisterForUpdateLaunch,
- installer_util::master_preferences::kDoNotRegisterForUpdateLaunch },
- { installer_util::switches::kDoNotLaunchChrome,
- installer_util::master_preferences::kDoNotLaunchChrome },
- { installer_util::switches::kMakeChromeDefault,
- installer_util::master_preferences::kMakeChromeDefault },
- { installer_util::switches::kSystemLevel,
- installer_util::master_preferences::kSystemLevel },
- { installer_util::switches::kVerboseLogging,
- installer_util::master_preferences::kVerboseLogging },
- { installer_util::switches::kAltDesktopShortcut,
- installer_util::master_preferences::kAltShortcutText },
+ { installer::switches::kCeee,
+ installer::master_preferences::kCeee },
+ { installer::switches::kChrome,
+ installer::master_preferences::kChrome },
+ { installer::switches::kChromeFrame,
+ installer::master_preferences::kChromeFrame },
+ { installer::switches::kCreateAllShortcuts,
+ installer::master_preferences::kCreateAllShortcuts },
+ { installer::switches::kDisableLogging,
+ installer::master_preferences::kDisableLogging },
+ { installer::switches::kDoNotCreateShortcuts,
+ installer::master_preferences::kDoNotCreateShortcuts },
+ { installer::switches::kMsi,
+ installer::master_preferences::kMsi },
+ { installer::switches::kMultiInstall,
+ installer::master_preferences::kMultiInstall },
+ { installer::switches::kDoNotRegisterForUpdateLaunch,
+ installer::master_preferences::kDoNotRegisterForUpdateLaunch },
+ { installer::switches::kDoNotLaunchChrome,
+ installer::master_preferences::kDoNotLaunchChrome },
+ { installer::switches::kMakeChromeDefault,
+ installer::master_preferences::kMakeChromeDefault },
+ { installer::switches::kSystemLevel,
+ installer::master_preferences::kSystemLevel },
+ { installer::switches::kVerboseLogging,
+ installer::master_preferences::kVerboseLogging },
+ { installer::switches::kAltDesktopShortcut,
+ installer::master_preferences::kAltShortcutText },
};
std::string name(kDistroDict);
@@ -172,10 +172,10 @@
// See if the log file path was specified on the command line.
std::wstring str_value(cmd_line.GetSwitchValueNative(
- installer_util::switches::kLogFile));
+ installer::switches::kLogFile));
if (!str_value.empty()) {
name.resize(arraysize(kDistroDict) - 1);
- name.append(".").append(installer_util::master_preferences::kLogFile);
+ name.append(".").append(installer::master_preferences::kLogFile);
master_dictionary_->SetString(name, str_value);
}
@@ -193,9 +193,9 @@
ceee_ = false;
chrome_ = true;
- GetBool(installer_util::master_preferences::kMultiInstall, &multi_install_);
- GetBool(installer_util::master_preferences::kChromeFrame, &chrome_frame_);
- GetBool(installer_util::master_preferences::kCeee, &ceee_);
+ GetBool(installer::master_preferences::kMultiInstall, &multi_install_);
+ GetBool(installer::master_preferences::kChromeFrame, &chrome_frame_);
+ GetBool(installer::master_preferences::kCeee, &ceee_);
// When multi-install is specified, the checks are pretty simple (in theory):
// In order to be installed/uninstalled, each product must have its switch
@@ -213,7 +213,7 @@
chrome_frame_ = true;
if (multi_install_) {
- if (!GetBool(installer_util::master_preferences::kChrome, &chrome_))
+ if (!GetBool(installer::master_preferences::kChrome, &chrome_))
chrome_ = false;
} else {
// If chrome-frame is on the command line however, we only install CF.
« no previous file with comments | « chrome/installer/util/master_preferences.h ('k') | chrome/installer/util/master_preferences_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698