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 | 14 |
15 // The name of the value where Google Update reads the list of experiments for | 15 // The name of the value where Google Update reads the list of experiments for |
16 // itself and Chrome. | 16 // itself and Chrome. |
17 extern const wchar_t kExperimentLabels[]; | 17 extern const wchar_t kExperimentLabels[]; |
18 | 18 |
| 19 // The separator used to separate items in kExperimentLabels. |
| 20 extern const wchar_t kExperimentLabelSep[]; |
| 21 |
19 // The GUID Google Update uses to keep track of Google Update self-upgrades. | 22 // The GUID Google Update uses to keep track of Google Update self-upgrades. |
20 extern const wchar_t kGoogleUpdateUpgradeCode[]; | 23 extern const wchar_t kGoogleUpdateUpgradeCode[]; |
21 | 24 |
22 extern const wchar_t kGoogleUpdateSetupExe[]; | 25 extern const wchar_t kGoogleUpdateSetupExe[]; |
23 | 26 |
24 extern const wchar_t kRegPathClients[]; | 27 extern const wchar_t kRegPathClients[]; |
25 | 28 |
26 // The difference between ClientState and ClientStateMedium is that the former | 29 // The difference between ClientState and ClientStateMedium is that the former |
27 // lives on HKCU or HKLM and the later always lives in HKLM. ClientStateMedium | 30 // lives on HKCU or HKLM and the later always lives in HKLM. ClientStateMedium |
28 // is primarily used for consent of the EULA and stats collection. See bug | 31 // is primarily used for consent of the EULA and stats collection. See bug |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 extern const wchar_t kRegUsageStatsField[]; | 77 extern const wchar_t kRegUsageStatsField[]; |
75 extern const wchar_t kRegVersionField[]; | 78 extern const wchar_t kRegVersionField[]; |
76 extern const wchar_t kRegWebAccessibleField[]; | 79 extern const wchar_t kRegWebAccessibleField[]; |
77 | 80 |
78 // last time that chrome ran in the Time internal format. | 81 // last time that chrome ran in the Time internal format. |
79 extern const wchar_t kRegLastRunTimeField[]; | 82 extern const wchar_t kRegLastRunTimeField[]; |
80 | 83 |
81 } // namespace google_update | 84 } // namespace google_update |
82 | 85 |
83 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 86 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
OLD | NEW |