| 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 24 matching lines...) Expand all Loading... |
| 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 Desktop and QuickLaunch shortcuts | 42 // Create Desktop and QuickLaunch shortcuts |
| 43 const char kCreateAllShortcuts[] = "create-all-shortcuts"; | 43 const char kCreateAllShortcuts[] = "create-all-shortcuts"; |
| 44 | 44 |
| 45 // The version number of an update containing critical fixes, for which an |
| 46 // in-use Chrome should be restarted ASAP. |
| 47 const char kCriticalUpdateVersion[] = "critical-update-version"; |
| 48 |
| 45 // Delete user profile data. This param is useful only when specified with | 49 // Delete user profile data. This param is useful only when specified with |
| 46 // kUninstall, otherwise it is silently ignored. | 50 // kUninstall, otherwise it is silently ignored. |
| 47 const char kDeleteProfile[] = "delete-profile"; | 51 const char kDeleteProfile[] = "delete-profile"; |
| 48 | 52 |
| 49 // Disable logging | 53 // Disable logging |
| 50 const char kDisableLogging[] = "disable-logging"; | 54 const char kDisableLogging[] = "disable-logging"; |
| 51 | 55 |
| 52 // Prevent installer from creating desktop shortcuts. | 56 // Prevent installer from creating desktop shortcuts. |
| 53 const char kDoNotCreateShortcuts[] = "do-not-create-shortcuts"; | 57 const char kDoNotCreateShortcuts[] = "do-not-create-shortcuts"; |
| 54 | 58 |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 | 194 |
| 191 // The presence of this environment variable with a value of 1 implies that | 195 // The presence of this environment variable with a value of 1 implies that |
| 192 // we should run as a system installation regardless of what is on the | 196 // we should run as a system installation regardless of what is on the |
| 193 // command line. | 197 // command line. |
| 194 const char kGoogleUpdateIsMachineEnvVar[] = "GoogleUpdateIsMachine"; | 198 const char kGoogleUpdateIsMachineEnvVar[] = "GoogleUpdateIsMachine"; |
| 195 | 199 |
| 196 const wchar_t kOptionMultiInstall[] = L"multi-install"; | 200 const wchar_t kOptionMultiInstall[] = L"multi-install"; |
| 197 const wchar_t kOptionReadyMode[] = L"ready-mode"; | 201 const wchar_t kOptionReadyMode[] = L"ready-mode"; |
| 198 | 202 |
| 199 } // namespace installer | 203 } // namespace installer |
| OLD | NEW |