| 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 24 matching lines...) Expand all Loading... |
| 35 // and detection of headers/meta tags. | 35 // and detection of headers/meta tags. |
| 36 const char kChromeFrameReadyModeTempOptOut[] = "ready-mode-temp-opt-out"; | 36 const char kChromeFrameReadyModeTempOptOut[] = "ready-mode-temp-opt-out"; |
| 37 | 37 |
| 38 // End GCF ready mode temp opt-out. This re-enables the GCF user agent | 38 // End GCF ready mode temp opt-out. This re-enables the GCF user agent |
| 39 // modification and detection of headers/meta tags. | 39 // modification and detection of headers/meta tags. |
| 40 const char kChromeFrameReadyModeEndTempOptOut[] = "ready-mode-end-temp-opt-out"; | 40 const char kChromeFrameReadyModeEndTempOptOut[] = "ready-mode-end-temp-opt-out"; |
| 41 | 41 |
| 42 // Run the installer for Chrome SxS. | 42 // Run the installer for Chrome SxS. |
| 43 const char kChromeSxS[] = "chrome-sxs"; | 43 const char kChromeSxS[] = "chrome-sxs"; |
| 44 | 44 |
| 45 // Create shortcuts for this user to point to a system-level install (which |
| 46 // must already be installed on the machine). The shortcuts created will |
| 47 // match the preferences of the already present system-level install as such |
| 48 // this option is not compatible with any other installer options. |
| 49 const char kConfigureUserSettings[] = "configure-user-settings"; |
| 50 |
| 45 // Create Desktop and QuickLaunch shortcuts (also forces all other shortcuts | 51 // Create Desktop and QuickLaunch shortcuts (also forces all other shortcuts |
| 46 // to be recreated if they were deleted). | 52 // to be recreated if they were deleted). |
| 47 const char kCreateAllShortcuts[] = "create-all-shortcuts"; | 53 const char kCreateAllShortcuts[] = "create-all-shortcuts"; |
| 48 | 54 |
| 49 // The version number of an update containing critical fixes, for which an | 55 // The version number of an update containing critical fixes, for which an |
| 50 // in-use Chrome should be restarted ASAP. | 56 // in-use Chrome should be restarted ASAP. |
| 51 const char kCriticalUpdateVersion[] = "critical-update-version"; | 57 const char kCriticalUpdateVersion[] = "critical-update-version"; |
| 52 | 58 |
| 53 // Delete user profile data. This param is useful only when specified with | 59 // Delete user profile data. This param is useful only when specified with |
| 54 // kUninstall, otherwise it is silently ignored. | 60 // kUninstall, otherwise it is silently ignored. |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 // Chrome channel display names. | 220 // Chrome channel display names. |
| 215 const wchar_t kChromeChannelUnknown[] = L"unknown"; | 221 const wchar_t kChromeChannelUnknown[] = L"unknown"; |
| 216 const wchar_t kChromeChannelCanary[] = L"canary"; | 222 const wchar_t kChromeChannelCanary[] = L"canary"; |
| 217 const wchar_t kChromeChannelDev[] = L"dev"; | 223 const wchar_t kChromeChannelDev[] = L"dev"; |
| 218 const wchar_t kChromeChannelBeta[] = L"beta"; | 224 const wchar_t kChromeChannelBeta[] = L"beta"; |
| 219 const wchar_t kChromeChannelStable[] = L""; | 225 const wchar_t kChromeChannelStable[] = L""; |
| 220 | 226 |
| 221 const size_t kMaxAppModelIdLength = 64U; | 227 const size_t kMaxAppModelIdLength = 64U; |
| 222 | 228 |
| 223 } // namespace installer | 229 } // namespace installer |
| OLD | NEW |