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 the command-line switches used with Google Update. | 5 // Defines all the command-line switches used with Google Update. |
6 | 6 |
7 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 7 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
8 #define CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 8 #define CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
9 | 9 |
10 namespace google_update { | 10 namespace google_update { |
11 | 11 |
12 // The GUID Google Update uses to keep track of Chrome upgrades. | 12 // The GUID Google Update uses to keep track of Chrome upgrades. |
13 extern const wchar_t kChromeUpgradeCode[]; | 13 extern const wchar_t kChromeUpgradeCode[]; |
| 14 |
| 15 // The name of the value where Google Update reads the list of experiments for |
| 16 // itself and Chrome. |
| 17 extern const wchar_t kExperimentLabels[]; |
| 18 |
14 // The GUID Google Update uses to keep track of Google Update self-upgrades. | 19 // The GUID Google Update uses to keep track of Google Update self-upgrades. |
15 extern const wchar_t kGoogleUpdateUpgradeCode[]; | 20 extern const wchar_t kGoogleUpdateUpgradeCode[]; |
16 | 21 |
17 extern const wchar_t kGoogleUpdateSetupExe[]; | 22 extern const wchar_t kGoogleUpdateSetupExe[]; |
18 | 23 |
19 extern const wchar_t kRegPathClients[]; | 24 extern const wchar_t kRegPathClients[]; |
20 | 25 |
21 // The difference between ClientState and ClientStateMedium is that the former | 26 // The difference between ClientState and ClientStateMedium is that the former |
22 // lives on HKCU or HKLM and the later always lives in HKLM. ClientStateMedium | 27 // lives on HKCU or HKLM and the later always lives in HKLM. ClientStateMedium |
23 // is primarily used for consent of the EULA and stats collection. See bug | 28 // is primarily used for consent of the EULA and stats collection. See bug |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 extern const wchar_t kRegUsageStatsField[]; | 73 extern const wchar_t kRegUsageStatsField[]; |
69 extern const wchar_t kRegVersionField[]; | 74 extern const wchar_t kRegVersionField[]; |
70 extern const wchar_t kRegWebAccessibleField[]; | 75 extern const wchar_t kRegWebAccessibleField[]; |
71 | 76 |
72 // last time that chrome ran in the Time internal format. | 77 // last time that chrome ran in the Time internal format. |
73 extern const wchar_t kRegLastRunTimeField[]; | 78 extern const wchar_t kRegLastRunTimeField[]; |
74 | 79 |
75 } // namespace google_update | 80 } // namespace google_update |
76 | 81 |
77 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 82 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
OLD | NEW |