OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 const wchar_t kChromeExe[] = L"chrome.exe"; | 208 const wchar_t kChromeExe[] = L"chrome.exe"; |
209 const wchar_t kChromeFrameDll[] = L"npchrome_frame.dll"; | 209 const wchar_t kChromeFrameDll[] = L"npchrome_frame.dll"; |
210 const wchar_t kChromeFrameHelperExe[] = L"chrome_frame_helper.exe"; | 210 const wchar_t kChromeFrameHelperExe[] = L"chrome_frame_helper.exe"; |
211 const wchar_t kChromeFrameHelperWndClass[] = L"ChromeFrameHelperWindowClass"; | 211 const wchar_t kChromeFrameHelperWndClass[] = L"ChromeFrameHelperWindowClass"; |
212 const wchar_t kChromeFrameReadyModeField[] = L"ChromeFrameReadyMode"; | 212 const wchar_t kChromeFrameReadyModeField[] = L"ChromeFrameReadyMode"; |
213 const wchar_t kChromeLauncherExe[] = L"chrome_launcher.exe"; | 213 const wchar_t kChromeLauncherExe[] = L"chrome_launcher.exe"; |
214 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; | 214 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; |
215 const wchar_t kChromeOldExe[] = L"old_chrome.exe"; | 215 const wchar_t kChromeOldExe[] = L"old_chrome.exe"; |
216 const wchar_t kCmdInstallApp[] = L"install-application"; | 216 const wchar_t kCmdInstallApp[] = L"install-application"; |
217 const wchar_t kCmdOnOsUpgrade[] = L"on-os-upgrade"; | 217 const wchar_t kCmdOnOsUpgrade[] = L"on-os-upgrade"; |
| 218 const wchar_t kCmdQueryEULAAcceptance[] = L"query-eula-acceptance"; |
218 const wchar_t kCmdQuickEnableApplicationHost[] = | 219 const wchar_t kCmdQuickEnableApplicationHost[] = |
219 L"quick-enable-application-host"; | 220 L"quick-enable-application-host"; |
220 const wchar_t kCmdQuickEnableCf[] = L"quick-enable-cf"; | 221 const wchar_t kCmdQuickEnableCf[] = L"quick-enable-cf"; |
221 const wchar_t kDelegateExecuteExe[] = L"delegate_execute.exe"; | 222 const wchar_t kDelegateExecuteExe[] = L"delegate_execute.exe"; |
222 const wchar_t kEULASentinelFile[] = L"EULA Accepted"; | 223 const wchar_t kEULASentinelFile[] = L"EULA Accepted"; |
223 const wchar_t kGoogleChromeInstallSubDir1[] = L"Google"; | 224 const wchar_t kGoogleChromeInstallSubDir1[] = L"Google"; |
224 const wchar_t kGoogleChromeInstallSubDir2[] = L"Chrome"; | 225 const wchar_t kGoogleChromeInstallSubDir2[] = L"Chrome"; |
225 const wchar_t kInstallBinaryDir[] = L"Application"; | 226 const wchar_t kInstallBinaryDir[] = L"Application"; |
226 const wchar_t kInstallerDir[] = L"Installer"; | 227 const wchar_t kInstallerDir[] = L"Installer"; |
227 const wchar_t kInstallTempDir[] = L"Temp"; | 228 const wchar_t kInstallTempDir[] = L"Temp"; |
(...skipping 26 matching lines...) Expand all Loading... |
254 // Chrome channel display names. | 255 // Chrome channel display names. |
255 const wchar_t kChromeChannelUnknown[] = L"unknown"; | 256 const wchar_t kChromeChannelUnknown[] = L"unknown"; |
256 const wchar_t kChromeChannelCanary[] = L"canary"; | 257 const wchar_t kChromeChannelCanary[] = L"canary"; |
257 const wchar_t kChromeChannelDev[] = L"dev"; | 258 const wchar_t kChromeChannelDev[] = L"dev"; |
258 const wchar_t kChromeChannelBeta[] = L"beta"; | 259 const wchar_t kChromeChannelBeta[] = L"beta"; |
259 const wchar_t kChromeChannelStable[] = L""; | 260 const wchar_t kChromeChannelStable[] = L""; |
260 | 261 |
261 const size_t kMaxAppModelIdLength = 64U; | 262 const size_t kMaxAppModelIdLength = 64U; |
262 | 263 |
263 } // namespace installer | 264 } // namespace installer |
OLD | NEW |