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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 const wchar_t kChromeDll[] = L"chrome.dll"; | 155 const wchar_t kChromeDll[] = L"chrome.dll"; |
156 const wchar_t kChromeExe[] = L"chrome.exe"; | 156 const wchar_t kChromeExe[] = L"chrome.exe"; |
157 const wchar_t kChromeFrameDll[] = L"npchrome_frame.dll"; | 157 const wchar_t kChromeFrameDll[] = L"npchrome_frame.dll"; |
158 const wchar_t kChromeFrameHelperExe[] = L"chrome_frame_helper.exe"; | 158 const wchar_t kChromeFrameHelperExe[] = L"chrome_frame_helper.exe"; |
159 const wchar_t kChromeFrameHelperWndClass[] = L"ChromeFrameHelperWindowClass"; | 159 const wchar_t kChromeFrameHelperWndClass[] = L"ChromeFrameHelperWindowClass"; |
160 const wchar_t kChromeFrameReadyModeField[] = L"ChromeFrameReadyMode"; | 160 const wchar_t kChromeFrameReadyModeField[] = L"ChromeFrameReadyMode"; |
161 const wchar_t kChromeLauncherExe[] = L"chrome_launcher.exe"; | 161 const wchar_t kChromeLauncherExe[] = L"chrome_launcher.exe"; |
162 const wchar_t kChromeNaCl64Dll[] = L"nacl64.dll"; | 162 const wchar_t kChromeNaCl64Dll[] = L"nacl64.dll"; |
163 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; | 163 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; |
164 const wchar_t kChromeOldExe[] = L"old_chrome.exe"; | 164 const wchar_t kChromeOldExe[] = L"old_chrome.exe"; |
| 165 const wchar_t kCmdQuickEnableCf[] = L"quick-enable-cf"; |
165 const wchar_t kGoogleChromeInstallSubDir1[] = L"Google"; | 166 const wchar_t kGoogleChromeInstallSubDir1[] = L"Google"; |
166 const wchar_t kGoogleChromeInstallSubDir2[] = L"Chrome"; | 167 const wchar_t kGoogleChromeInstallSubDir2[] = L"Chrome"; |
167 const wchar_t kInstallBinaryDir[] = L"Application"; | 168 const wchar_t kInstallBinaryDir[] = L"Application"; |
168 const wchar_t kInstallerDir[] = L"Installer"; | 169 const wchar_t kInstallerDir[] = L"Installer"; |
169 const wchar_t kInstallTempDir[] = L"Temp"; | 170 const wchar_t kInstallTempDir[] = L"Temp"; |
170 const wchar_t kInstallUserDataDir[] = L"User Data"; | 171 const wchar_t kInstallUserDataDir[] = L"User Data"; |
171 const wchar_t kNaClExe[] = L"nacl64.exe"; | 172 const wchar_t kNaClExe[] = L"nacl64.exe"; |
172 const wchar_t kSetupExe[] = L"setup.exe"; | 173 const wchar_t kSetupExe[] = L"setup.exe"; |
173 const wchar_t kSxSSuffix[] = L" SxS"; | 174 const wchar_t kSxSSuffix[] = L" SxS"; |
174 const wchar_t kUninstallStringField[] = L"UninstallString"; | 175 const wchar_t kUninstallStringField[] = L"UninstallString"; |
175 const wchar_t kUninstallArgumentsField[] = L"UninstallArguments"; | 176 const wchar_t kUninstallArgumentsField[] = L"UninstallArguments"; |
176 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; | 177 const wchar_t kUninstallDisplayNameField[] = L"DisplayName"; |
177 const char kUninstallMetricsName[] = "uninstall_metrics"; | 178 const char kUninstallMetricsName[] = "uninstall_metrics"; |
178 const wchar_t kUninstallInstallationDate[] = L"installation_date"; | 179 const wchar_t kUninstallInstallationDate[] = L"installation_date"; |
179 const wchar_t kInstallerResult[] = L"InstallerResult"; | 180 const wchar_t kInstallerResult[] = L"InstallerResult"; |
180 const wchar_t kInstallerError[] = L"InstallerError"; | 181 const wchar_t kInstallerError[] = L"InstallerError"; |
181 const wchar_t kInstallerResultUIString[] = L"InstallerResultUIString"; | 182 const wchar_t kInstallerResultUIString[] = L"InstallerResultUIString"; |
182 const wchar_t kInstallerSuccessLaunchCmdLine[] = | 183 const wchar_t kInstallerSuccessLaunchCmdLine[] = |
183 L"InstallerSuccessLaunchCmdLine"; | 184 L"InstallerSuccessLaunchCmdLine"; |
184 | 185 |
185 const wchar_t kOptionCeee[] = L"ceee"; | 186 const wchar_t kOptionCeee[] = L"ceee"; |
186 const wchar_t kOptionMultiInstall[] = L"multi-install"; | 187 const wchar_t kOptionMultiInstall[] = L"multi-install"; |
187 const wchar_t kOptionReadyMode[] = L"ready-mode"; | 188 const wchar_t kOptionReadyMode[] = L"ready-mode"; |
188 | 189 |
189 } // namespace installer | 190 } // namespace installer |
OLD | NEW |