diff options
Diffstat (limited to 'chrome/installer/util/util_constants.cc')
-rwxr-xr-x | chrome/installer/util/util_constants.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/installer/util/util_constants.cc b/chrome/installer/util/util_constants.cc index 886795e..4ee1b02 100755 --- a/chrome/installer/util/util_constants.cc +++ b/chrome/installer/util/util_constants.cc @@ -49,6 +49,10 @@ const wchar_t kMakeChromeDefault[] = L"make-chrome-default"; // options kInstallArchive and kUninstall are ignored. const wchar_t kRegisterChromeBrowser[] = L"register-chrome-browser"; +// Renames chrome.exe to old_chrome.exe and renames new_chrome.exe to chrome.exe +// to support in-use updates. Also deletes opv key. +const wchar_t kRenameChromeExe[] = L"rename-chrome-exe"; + // Install Chrome to system wise location. The default is per user install. const wchar_t kSystemLevel[] = L"system-level"; @@ -62,6 +66,8 @@ const wchar_t kVerboseLogging[] = L"verbose-logging"; const wchar_t kInstallBinaryDir[] = L"Application"; const wchar_t kChromeExe[] = L"chrome.exe"; +const wchar_t kChromeOldExe[] = L"old_chrome.exe"; +const wchar_t kChromeNewExe[] = L"new_chrome.exe"; const wchar_t kChromeDll[] = L"chrome.dll"; const wchar_t kSetupExe[] = L"setup.exe"; |