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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 const wchar_t kChromeChildDll[] = L"chrome_child.dll"; | 218 const wchar_t kChromeChildDll[] = L"chrome_child.dll"; |
219 const wchar_t kChromeExe[] = L"chrome.exe"; | 219 const wchar_t kChromeExe[] = L"chrome.exe"; |
220 const wchar_t kChromeFrameDll[] = L"npchrome_frame.dll"; | 220 const wchar_t kChromeFrameDll[] = L"npchrome_frame.dll"; |
221 const wchar_t kChromeFrameHelperDll[] = L"chrome_frame_helper.dll"; | 221 const wchar_t kChromeFrameHelperDll[] = L"chrome_frame_helper.dll"; |
222 const wchar_t kChromeFrameHelperExe[] = L"chrome_frame_helper.exe"; | 222 const wchar_t kChromeFrameHelperExe[] = L"chrome_frame_helper.exe"; |
223 const wchar_t kChromeFrameHelperWndClass[] = L"ChromeFrameHelperWindowClass"; | 223 const wchar_t kChromeFrameHelperWndClass[] = L"ChromeFrameHelperWindowClass"; |
224 const wchar_t kChromeLauncherExe[] = L"chrome_launcher.exe"; | 224 const wchar_t kChromeLauncherExe[] = L"chrome_launcher.exe"; |
225 const wchar_t kChromeMetroDll[] = L"metro_driver.dll"; | 225 const wchar_t kChromeMetroDll[] = L"metro_driver.dll"; |
226 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; | 226 const wchar_t kChromeNewExe[] = L"new_chrome.exe"; |
227 const wchar_t kChromeOldExe[] = L"old_chrome.exe"; | 227 const wchar_t kChromeOldExe[] = L"old_chrome.exe"; |
228 const wchar_t kCmdInstallApp[] = L"install-application"; | |
229 const wchar_t kCmdInstallExtension[] = L"install-extension"; | |
230 const wchar_t kCmdOnOsUpgrade[] = L"on-os-upgrade"; | 228 const wchar_t kCmdOnOsUpgrade[] = L"on-os-upgrade"; |
231 const wchar_t kCmdQueryEULAAcceptance[] = L"query-eula-acceptance"; | 229 const wchar_t kCmdQueryEULAAcceptance[] = L"query-eula-acceptance"; |
232 const wchar_t kCmdQuickEnableApplicationHost[] = | 230 const wchar_t kCmdQuickEnableApplicationHost[] = |
233 L"quick-enable-application-host"; | 231 L"quick-enable-application-host"; |
234 const wchar_t kCmdQuickEnableCf[] = L"quick-enable-cf"; | 232 const wchar_t kCmdQuickEnableCf[] = L"quick-enable-cf"; |
235 const wchar_t kDelegateExecuteExe[] = L"delegate_execute.exe"; | 233 const wchar_t kDelegateExecuteExe[] = L"delegate_execute.exe"; |
236 const wchar_t kEULASentinelFile[] = L"EULA Accepted"; | 234 const wchar_t kEULASentinelFile[] = L"EULA Accepted"; |
237 const wchar_t kGoogleChromeInstallSubDir1[] = L"Google"; | 235 const wchar_t kGoogleChromeInstallSubDir1[] = L"Google"; |
238 const wchar_t kGoogleChromeInstallSubDir2[] = L"Chrome"; | 236 const wchar_t kGoogleChromeInstallSubDir2[] = L"Chrome"; |
239 const wchar_t kInstallBinaryDir[] = L"Application"; | 237 const wchar_t kInstallBinaryDir[] = L"Application"; |
(...skipping 24 matching lines...) Expand all Loading... |
264 const wchar_t kChromeChannelBeta[] = L"beta"; | 262 const wchar_t kChromeChannelBeta[] = L"beta"; |
265 const wchar_t kChromeChannelStable[] = L""; | 263 const wchar_t kChromeChannelStable[] = L""; |
266 const wchar_t kChromeChannelStableExplicit[] = L"stable"; | 264 const wchar_t kChromeChannelStableExplicit[] = L"stable"; |
267 | 265 |
268 const size_t kMaxAppModelIdLength = 64U; | 266 const size_t kMaxAppModelIdLength = 64U; |
269 | 267 |
270 const char kCourgette[] = "courgette"; | 268 const char kCourgette[] = "courgette"; |
271 const char kBsdiff[] = "bsdiff"; | 269 const char kBsdiff[] = "bsdiff"; |
272 | 270 |
273 } // namespace installer | 271 } // namespace installer |
OLD | NEW |