| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 { | 7 namespace installer { |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 145 |
| 146 // The group this experiment belongs to. | 146 // The group this experiment belongs to. |
| 147 const char kExperimentGroup[] = "experiment-group"; | 147 const char kExperimentGroup[] = "experiment-group"; |
| 148 | 148 |
| 149 // A handle value of the key to write the results of the toast experiment | 149 // A handle value of the key to write the results of the toast experiment |
| 150 // to. See DuplicateGoogleUpdateSystemClientKey for details. | 150 // to. See DuplicateGoogleUpdateSystemClientKey for details. |
| 151 const char kToastResultsKey[] = "toast-results-key"; | 151 const char kToastResultsKey[] = "toast-results-key"; |
| 152 | 152 |
| 153 } // namespace switches | 153 } // namespace switches |
| 154 | 154 |
| 155 const wchar_t kCeeeBrokerExe[] = L"ceee_broker.exe"; | |
| 156 const wchar_t kCeeeIeDll[] = L"ceee_ie.dll"; | |
| 157 const wchar_t kCeeeInstallHelperDll[] = L"ceee_installer_helper.dll"; | |
| 158 const wchar_t kChromeDll[] = L"chrome.dll"; | 155 const wchar_t kChromeDll[] = L"chrome.dll"; |
| 159 const wchar_t kChromeExe[] = L"chrome.exe"; | 156 const wchar_t kChromeExe[] = L"chrome.exe"; |
| 160 const wchar_t kChromeFrameDll[] = L"npchrome_frame.dll"; | 157 const wchar_t kChromeFrameDll[] = L"npchrome_frame.dll"; |
| 161 const wchar_t kChromeFrameHelperExe[] = L"chrome_frame_helper.exe"; | 158 const wchar_t kChromeFrameHelperExe[] = L"chrome_frame_helper.exe"; |
| 162 const wchar_t kChromeFrameHelperWndClass[] = L"ChromeFrameHelperWindowClass"; | 159 const wchar_t kChromeFrameHelperWndClass[] = L"ChromeFrameHelperWindowClass"; |
| 163 const wchar_t kChromeFrameReadyModeField[] = L"ChromeFrameReadyMode"; | 160 const wchar_t kChromeFrameReadyModeField[] = L"ChromeFrameReadyMode"; |
| 164 const wchar_t kChromeLauncherExe[] = L"chrome_launcher.exe"; | 161 const wchar_t kChromeLauncherExe[] = L"chrome_launcher.exe"; |
| 165 const wchar_t kChromeNaCl64Dll[] = L"nacl64.dll"; | 162 const wchar_t kChromeNaCl64Dll[] = L"nacl64.dll"; |
| 166 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; | 163 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; |
| 167 const wchar_t kChromeOldExe[] = L"old_chrome.exe"; | 164 const wchar_t kChromeOldExe[] = L"old_chrome.exe"; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 184 const wchar_t kInstallerError[] = L"InstallerError"; | 181 const wchar_t kInstallerError[] = L"InstallerError"; |
| 185 const wchar_t kInstallerResultUIString[] = L"InstallerResultUIString"; | 182 const wchar_t kInstallerResultUIString[] = L"InstallerResultUIString"; |
| 186 const wchar_t kInstallerSuccessLaunchCmdLine[] = | 183 const wchar_t kInstallerSuccessLaunchCmdLine[] = |
| 187 L"InstallerSuccessLaunchCmdLine"; | 184 L"InstallerSuccessLaunchCmdLine"; |
| 188 | 185 |
| 189 const wchar_t kOptionCeee[] = L"ceee"; | 186 const wchar_t kOptionCeee[] = L"ceee"; |
| 190 const wchar_t kOptionMultiInstall[] = L"multi-install"; | 187 const wchar_t kOptionMultiInstall[] = L"multi-install"; |
| 191 const wchar_t kOptionReadyMode[] = L"ready-mode"; | 188 const wchar_t kOptionReadyMode[] = L"ready-mode"; |
| 192 | 189 |
| 193 } // namespace installer | 190 } // namespace installer |
| OLD | NEW |