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 // The GUID Google Update uses to keep track of Google Update self-upgrades. | 14 // The GUID Google Update uses to keep track of Google Update self-upgrades. |
15 extern const wchar_t kGoogleUpdateUpgradeCode[]; | 15 extern const wchar_t kGoogleUpdateUpgradeCode[]; |
16 | 16 |
17 extern const wchar_t kGoogleUpdateSetupExecutable[]; | |
grt (UTC plus 2)
2012/09/20 17:58:51
i think kGoogleUpdateSetupExe is more obvious.
huangs
2012/09/21 01:43:14
Done.
| |
18 | |
17 extern const wchar_t kRegPathClients[]; | 19 extern const wchar_t kRegPathClients[]; |
18 | 20 |
19 // The difference between ClientState and ClientStateMedium is that the former | 21 // The difference between ClientState and ClientStateMedium is that the former |
20 // lives on HKCU or HKLM and the later always lives in HKLM. ClientStateMedium | 22 // lives on HKCU or HKLM and the later always lives in HKLM. ClientStateMedium |
21 // is primarily used for consent of the EULA and stats collection. See bug | 23 // is primarily used for consent of the EULA and stats collection. See bug |
22 // 1594565. | 24 // 1594565. |
23 extern const wchar_t kRegPathClientState[]; | 25 extern const wchar_t kRegPathClientState[]; |
24 extern const wchar_t kRegPathClientStateMedium[]; | 26 extern const wchar_t kRegPathClientStateMedium[]; |
25 | 27 |
26 extern const wchar_t kRegPathGoogleUpdate[]; | 28 extern const wchar_t kRegPathGoogleUpdate[]; |
(...skipping 22 matching lines...) Expand all Loading... | |
49 extern const wchar_t kRegLastCheckSuccessField[]; | 51 extern const wchar_t kRegLastCheckSuccessField[]; |
50 extern const wchar_t kRegLastInstallerResultField[]; | 52 extern const wchar_t kRegLastInstallerResultField[]; |
51 extern const wchar_t kRegLastInstallerErrorField[]; | 53 extern const wchar_t kRegLastInstallerErrorField[]; |
52 extern const wchar_t kRegLastInstallerExtraField[]; | 54 extern const wchar_t kRegLastInstallerExtraField[]; |
53 extern const wchar_t kRegMetricsId[]; | 55 extern const wchar_t kRegMetricsId[]; |
54 extern const wchar_t kRegMSIField[]; | 56 extern const wchar_t kRegMSIField[]; |
55 extern const wchar_t kRegNameField[]; | 57 extern const wchar_t kRegNameField[]; |
56 extern const wchar_t kRegOemInstallField[]; | 58 extern const wchar_t kRegOemInstallField[]; |
57 extern const wchar_t kRegOldVersionField[]; | 59 extern const wchar_t kRegOldVersionField[]; |
58 extern const wchar_t kRegOopcrashesField[]; | 60 extern const wchar_t kRegOopcrashesField[]; |
61 extern const wchar_t kRegPathField[]; | |
59 extern const wchar_t kRegRLZBrandField[]; | 62 extern const wchar_t kRegRLZBrandField[]; |
60 extern const wchar_t kRegRLZReactivationBrandField[]; | 63 extern const wchar_t kRegRLZReactivationBrandField[]; |
61 extern const wchar_t kRegReferralField[]; | 64 extern const wchar_t kRegReferralField[]; |
62 extern const wchar_t kRegRenameCmdField[]; | 65 extern const wchar_t kRegRenameCmdField[]; |
63 extern const wchar_t kRegSendsPingsField[]; | 66 extern const wchar_t kRegSendsPingsField[]; |
64 extern const wchar_t kRegUninstallCmdLine[]; | 67 extern const wchar_t kRegUninstallCmdLine[]; |
65 extern const wchar_t kRegUsageStatsField[]; | 68 extern const wchar_t kRegUsageStatsField[]; |
66 extern const wchar_t kRegVersionField[]; | 69 extern const wchar_t kRegVersionField[]; |
67 extern const wchar_t kRegWebAccessibleField[]; | 70 extern const wchar_t kRegWebAccessibleField[]; |
68 | 71 |
69 // last time that chrome ran in the Time internal format. | 72 // last time that chrome ran in the Time internal format. |
70 extern const wchar_t kRegLastRunTimeField[]; | 73 extern const wchar_t kRegLastRunTimeField[]; |
71 | 74 |
72 } // namespace google_update | 75 } // namespace google_update |
73 | 76 |
74 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 77 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
OLD | NEW |