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 // 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 #pragma once | 10 #pragma once |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 extern const wchar_t kChromeNewExe[]; | 177 extern const wchar_t kChromeNewExe[]; |
178 extern const wchar_t kCmdQuickEnableCf[]; | 178 extern const wchar_t kCmdQuickEnableCf[]; |
179 extern const wchar_t kDelegateExecuteExe[]; | 179 extern const wchar_t kDelegateExecuteExe[]; |
180 extern const wchar_t kGoogleChromeInstallSubDir1[]; | 180 extern const wchar_t kGoogleChromeInstallSubDir1[]; |
181 extern const wchar_t kGoogleChromeInstallSubDir2[]; | 181 extern const wchar_t kGoogleChromeInstallSubDir2[]; |
182 extern const wchar_t kInstallBinaryDir[]; | 182 extern const wchar_t kInstallBinaryDir[]; |
183 extern const wchar_t kInstallerDir[]; | 183 extern const wchar_t kInstallerDir[]; |
184 extern const wchar_t kInstallTempDir[]; | 184 extern const wchar_t kInstallTempDir[]; |
185 extern const wchar_t kInstallUserDataDir[]; | 185 extern const wchar_t kInstallUserDataDir[]; |
186 extern const wchar_t kNaClExe[]; | 186 extern const wchar_t kNaClExe[]; |
| 187 extern const wchar_t kPSOAInterfaceUuid[]; |
187 extern const wchar_t kSetupExe[]; | 188 extern const wchar_t kSetupExe[]; |
188 extern const wchar_t kSxSSuffix[]; | 189 extern const wchar_t kSxSSuffix[]; |
189 extern const wchar_t kUninstallArgumentsField[]; | 190 extern const wchar_t kUninstallArgumentsField[]; |
190 extern const wchar_t kUninstallDisplayNameField[]; | 191 extern const wchar_t kUninstallDisplayNameField[]; |
191 extern const wchar_t kUninstallInstallationDate[]; | 192 extern const wchar_t kUninstallInstallationDate[]; |
192 extern const char kUninstallMetricsName[]; | 193 extern const char kUninstallMetricsName[]; |
193 extern const wchar_t kUninstallStringField[]; | 194 extern const wchar_t kUninstallStringField[]; |
194 | 195 |
195 // Google Update installer result API | 196 // Google Update installer result API |
196 extern const wchar_t kInstallerError[]; | 197 extern const wchar_t kInstallerError[]; |
(...skipping 12 matching lines...) Expand all Loading... |
209 // Chrome channel display names. | 210 // Chrome channel display names. |
210 // NOTE: Canary is not strictly a 'channel', but rather a separate product | 211 // NOTE: Canary is not strictly a 'channel', but rather a separate product |
211 // installed side-by-side. However, GoogleUpdateSettings::GetChromeChannel | 212 // installed side-by-side. However, GoogleUpdateSettings::GetChromeChannel |
212 // will return "canary" for that product. | 213 // will return "canary" for that product. |
213 extern const wchar_t kChromeChannelUnknown[]; | 214 extern const wchar_t kChromeChannelUnknown[]; |
214 extern const wchar_t kChromeChannelCanary[]; | 215 extern const wchar_t kChromeChannelCanary[]; |
215 extern const wchar_t kChromeChannelDev[]; | 216 extern const wchar_t kChromeChannelDev[]; |
216 extern const wchar_t kChromeChannelBeta[]; | 217 extern const wchar_t kChromeChannelBeta[]; |
217 extern const wchar_t kChromeChannelStable[]; | 218 extern const wchar_t kChromeChannelStable[]; |
218 | 219 |
219 // Delegate Execute registration values. | |
220 extern const wchar_t kCommandExecuteImplUuid[]; | |
221 extern const wchar_t kDelegateExecuteLib[]; | |
222 extern const wchar_t kDelegateExecuteLibUuid[]; | |
223 extern const wchar_t kDelegateExecuteLibVersion[]; | |
224 extern const wchar_t kICommandExecuteImpl[]; | |
225 extern const wchar_t kICommandExecuteImplUuid[]; | |
226 extern const wchar_t kPSOAInterfaceUuid[]; | |
227 | |
228 } // namespace installer | 220 } // namespace installer |
229 | 221 |
230 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ | 222 #endif // CHROME_INSTALLER_UTIL_UTIL_CONSTANTS_H_ |
OLD | NEW |