| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/installer/util/util_constants.h" | 5 #include "chrome/installer/util/util_constants.h" |
| 6 | 6 |
| 7 namespace installer_util { | 7 namespace installer_util { |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 } // namespace switches | 72 } // namespace switches |
| 73 | 73 |
| 74 const wchar_t kInstallBinaryDir[] = L"Application"; | 74 const wchar_t kInstallBinaryDir[] = L"Application"; |
| 75 const wchar_t kChromeExe[] = L"chrome.exe"; | 75 const wchar_t kChromeExe[] = L"chrome.exe"; |
| 76 const wchar_t kChromeOldExe[] = L"old_chrome.exe"; | 76 const wchar_t kChromeOldExe[] = L"old_chrome.exe"; |
| 77 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; | 77 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; |
| 78 const wchar_t kChromeDll[] = L"chrome.dll"; | 78 const wchar_t kChromeDll[] = L"chrome.dll"; |
| 79 const wchar_t kSetupExe[] = L"setup.exe"; | 79 const wchar_t kSetupExe[] = L"setup.exe"; |
| 80 const wchar_t kInstallerDir[] = L"Installer"; | 80 const wchar_t kInstallerDir[] = L"Installer"; |
| 81 | 81 |
| 82 // Note that the following value must be kept in sync with kChromeExe | |
| 83 const wchar_t kAppPathsRegistryKey[] = | |
| 84 L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\chrome.exe"; | |
| 85 // Use the empty string to set the key default value. | |
| 86 const wchar_t kAppPathsRegistryDefaultName[] = L""; | |
| 87 const wchar_t kAppPathsRegistryPathName[] = L"Path"; | |
| 88 | |
| 89 const wchar_t kUninstallStringField[] = L"UninstallString"; | 82 const wchar_t kUninstallStringField[] = L"UninstallString"; |
| 90 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; | 83 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; |
| 91 } // namespace installer_util | 84 } // namespace installer_util |
| OLD | NEW |