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