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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 "do-not-register-for-update-launch"; | 72 "do-not-register-for-update-launch"; |
73 | 73 |
74 // By default we remove all shared (between users) files, registry entries etc | 74 // By default we remove all shared (between users) files, registry entries etc |
75 // during uninstall. If this option is specified together with kUninstall option | 75 // during uninstall. If this option is specified together with kUninstall option |
76 // we do not clean up shared entries otherwise this option is ignored. | 76 // we do not clean up shared entries otherwise this option is ignored. |
77 const char kDoNotRemoveSharedItems[] = "do-not-remove-shared-items"; | 77 const char kDoNotRemoveSharedItems[] = "do-not-remove-shared-items"; |
78 | 78 |
79 // Enable logging at the error level. This is the default behavior. | 79 // Enable logging at the error level. This is the default behavior. |
80 const char kEnableLogging[] = "enable-logging"; | 80 const char kEnableLogging[] = "enable-logging"; |
81 | 81 |
| 82 // Ensures that Google Update is present at the current level of installation. |
| 83 const char kEnsureGoogleUpdatePresent[] = "ensure-google-update-present"; |
| 84 |
82 // If present, setup will uninstall chrome without asking for any | 85 // If present, setup will uninstall chrome without asking for any |
83 // confirmation from user. | 86 // confirmation from user. |
84 const char kForceUninstall[] = "force-uninstall"; | 87 const char kForceUninstall[] = "force-uninstall"; |
85 | 88 |
86 // Specify the file path of Chrome archive for install. | 89 // Specify the file path of Chrome archive for install. |
87 const char kInstallArchive[] = "install-archive"; | 90 const char kInstallArchive[] = "install-archive"; |
88 | 91 |
89 // Specify the file path of Chrome master preference file. | 92 // Specify the file path of Chrome master preference file. |
90 const char kInstallerData[] = "installerdata"; | 93 const char kInstallerData[] = "installerdata"; |
91 | 94 |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 // Chrome channel display names. | 224 // Chrome channel display names. |
222 const wchar_t kChromeChannelUnknown[] = L"unknown"; | 225 const wchar_t kChromeChannelUnknown[] = L"unknown"; |
223 const wchar_t kChromeChannelCanary[] = L"canary"; | 226 const wchar_t kChromeChannelCanary[] = L"canary"; |
224 const wchar_t kChromeChannelDev[] = L"dev"; | 227 const wchar_t kChromeChannelDev[] = L"dev"; |
225 const wchar_t kChromeChannelBeta[] = L"beta"; | 228 const wchar_t kChromeChannelBeta[] = L"beta"; |
226 const wchar_t kChromeChannelStable[] = L""; | 229 const wchar_t kChromeChannelStable[] = L""; |
227 | 230 |
228 const size_t kMaxAppModelIdLength = 64U; | 231 const size_t kMaxAppModelIdLength = 64U; |
229 | 232 |
230 } // namespace installer | 233 } // namespace installer |
OLD | NEW |