summaryrefslogtreecommitdiffstats
path: root/chrome/browser/first_run/first_run_win.cc
diff options
context:
space:
mode:
authorrobertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-15 14:44:50 +0000
committerrobertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-15 14:44:50 +0000
commit74ca044ddeb27bca294a88f397e85429ce28e2b6 (patch)
treeb646397ff7ed1424b77ff4fa125e1151c100ef34 /chrome/browser/first_run/first_run_win.cc
parentc17bfcbba2d13a99d1e0a5d0e489fa86755450f8 (diff)
downloadchromium_src-74ca044ddeb27bca294a88f397e85429ce28e2b6.zip
chromium_src-74ca044ddeb27bca294a88f397e85429ce28e2b6.tar.gz
chromium_src-74ca044ddeb27bca294a88f397e85429ce28e2b6.tar.bz2
Revert 69167, itself a revert of 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/5738009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69256 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/first_run/first_run_win.cc')
-rw-r--r--chrome/browser/first_run/first_run_win.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/first_run/first_run_win.cc b/chrome/browser/first_run/first_run_win.cc
index 293d3d2..995dcb2 100644
--- a/chrome/browser/first_run/first_run_win.cc
+++ b/chrome/browser/first_run/first_run_win.cc
@@ -65,7 +65,7 @@ namespace {
bool GetNewerChromeFile(FilePath* path) {
if (!PathService::Get(base::DIR_EXE, path))
return false;
- *path = path->Append(installer_util::kChromeNewExe);
+ *path = path->Append(installer::kChromeNewExe);
return true;
}
@@ -83,7 +83,7 @@ bool InvokeGoogleUpdateForRename() {
DWORD exit_code;
::GetExitCodeProcess(handle, &exit_code);
::CloseHandle(handle);
- if (exit_code == installer_util::RENAME_SUCCESSFUL)
+ if (exit_code == installer::RENAME_SUCCESSFUL)
return true;
}
}
@@ -95,8 +95,8 @@ bool LaunchSetupWithParam(const std::string& param, const std::wstring& value,
FilePath exe_path;
if (!PathService::Get(base::DIR_MODULE, &exe_path))
return false;
- exe_path = exe_path.Append(installer_util::kInstallerDir);
- exe_path = exe_path.Append(installer_util::kSetupExe);
+ exe_path = exe_path.Append(installer::kInstallerDir);
+ exe_path = exe_path.Append(installer::kSetupExe);
base::ProcessHandle ph;
CommandLine cl(exe_path);
cl.AppendSwitchNative(param, value);
@@ -180,8 +180,8 @@ bool FirstRun::LaunchSetupWithParam(const std::string& param,
FilePath exe_path;
if (!PathService::Get(base::DIR_MODULE, &exe_path))
return false;
- exe_path = exe_path.Append(installer_util::kInstallerDir);
- exe_path = exe_path.Append(installer_util::kSetupExe);
+ exe_path = exe_path.Append(installer::kInstallerDir);
+ exe_path = exe_path.Append(installer::kSetupExe);
base::ProcessHandle ph;
CommandLine cl(exe_path);
cl.AppendSwitchNative(param, value);
@@ -286,7 +286,7 @@ bool Upgrade::SwapNewChromeExeIfPresent() {
DWORD exit_code;
::GetExitCodeProcess(handle, &exit_code);
::CloseHandle(handle);
- if (exit_code == installer_util::RENAME_SUCCESSFUL)
+ if (exit_code == installer::RENAME_SUCCESSFUL)
return true;
}
}