Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: chrome/installer/util/util_constants.h

Issue 11267023: Implementing --app-launcher install/uninstall flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removing shortcut install (will do in different CL), but keeping some refactoring. Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 // Defines all install related constants that need to be used by Chrome as 5 // Defines all install related constants that need to be used by Chrome as
6 // well as Chrome Installer. 6 // well as Chrome Installer.
7 7
8 #ifndef CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ 8 #ifndef CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_
9 #define CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ 9 #define CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_
10 10
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 122
123 // When we start reporting the numerical values from the enum, the order 123 // When we start reporting the numerical values from the enum, the order
124 // above MUST be preserved. 124 // above MUST be preserved.
125 COMPILE_ASSERT(CREATING_VISUAL_MANIFEST == 17, 125 COMPILE_ASSERT(CREATING_VISUAL_MANIFEST == 17,
126 never_ever_ever_change_InstallerStage_values_bang); 126 never_ever_ever_change_InstallerStage_values_bang);
127 127
128 namespace switches { 128 namespace switches {
129 extern const char kAutoLaunchChrome[]; 129 extern const char kAutoLaunchChrome[];
130 extern const char kChrome[]; 130 extern const char kChrome[];
131 extern const char kChromeAppHost[]; 131 extern const char kChromeAppHost[];
132 extern const char kChromeAppLauncher[];
132 extern const char kChromeFrame[]; 133 extern const char kChromeFrame[];
133 extern const char kChromeFrameQuickEnable[]; 134 extern const char kChromeFrameQuickEnable[];
134 extern const char kChromeFrameReadyMode[]; 135 extern const char kChromeFrameReadyMode[];
135 extern const char kChromeFrameReadyModeOptIn[]; 136 extern const char kChromeFrameReadyModeOptIn[];
136 extern const char kChromeFrameReadyModeTempOptOut[]; 137 extern const char kChromeFrameReadyModeTempOptOut[];
137 extern const char kChromeFrameReadyModeEndTempOptOut[]; 138 extern const char kChromeFrameReadyModeEndTempOptOut[];
138 extern const char kChromeSxS[]; 139 extern const char kChromeSxS[];
139 extern const char kConfigureUserSettings[]; 140 extern const char kConfigureUserSettings[];
140 extern const char kCreateAllShortcuts[]; 141 extern const char kCreateAllShortcuts[];
141 extern const char kCriticalUpdateVersion[]; 142 extern const char kCriticalUpdateVersion[];
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 extern const wchar_t kInstallerResult[]; 213 extern const wchar_t kInstallerResult[];
213 extern const wchar_t kInstallerResultUIString[]; 214 extern const wchar_t kInstallerResultUIString[];
214 extern const wchar_t kInstallerSuccessLaunchCmdLine[]; 215 extern const wchar_t kInstallerSuccessLaunchCmdLine[];
215 216
216 // Google Update named environment variable that implies kSystemLevel. 217 // Google Update named environment variable that implies kSystemLevel.
217 extern const char kGoogleUpdateIsMachineEnvVar[]; 218 extern const char kGoogleUpdateIsMachineEnvVar[];
218 219
219 // Product options. 220 // Product options.
220 extern const wchar_t kOptionMultiInstall[]; 221 extern const wchar_t kOptionMultiInstall[];
221 extern const wchar_t kOptionReadyMode[]; 222 extern const wchar_t kOptionReadyMode[];
223 extern const wchar_t kOptionAppHostIsLauncher[];
222 224
223 // Chrome channel display names. 225 // Chrome channel display names.
224 // NOTE: Canary is not strictly a 'channel', but rather a separate product 226 // NOTE: Canary is not strictly a 'channel', but rather a separate product
225 // installed side-by-side. However, GoogleUpdateSettings::GetChromeChannel 227 // installed side-by-side. However, GoogleUpdateSettings::GetChromeChannel
226 // will return "canary" for that product. 228 // will return "canary" for that product.
227 extern const wchar_t kChromeChannelUnknown[]; 229 extern const wchar_t kChromeChannelUnknown[];
228 extern const wchar_t kChromeChannelCanary[]; 230 extern const wchar_t kChromeChannelCanary[];
229 extern const wchar_t kChromeChannelDev[]; 231 extern const wchar_t kChromeChannelDev[];
230 extern const wchar_t kChromeChannelBeta[]; 232 extern const wchar_t kChromeChannelBeta[];
231 extern const wchar_t kChromeChannelStable[]; 233 extern const wchar_t kChromeChannelStable[];
232 234
233 extern const size_t kMaxAppModelIdLength; 235 extern const size_t kMaxAppModelIdLength;
234 236
235 } // namespace installer 237 } // namespace installer
236 238
237 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ 239 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698