OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/installer/util/google_update_constants.h" | 5 #include "chrome/installer/util/google_update_constants.h" |
6 | 6 |
7 namespace google_update { | 7 namespace google_update { |
8 | 8 |
9 const wchar_t kGearsUpgradeCode[] = L"{D92DBAED-3E3E-4530-B30D-072D16C7DDD0}"; | 9 const wchar_t kGearsUpgradeCode[] = L"{D92DBAED-3E3E-4530-B30D-072D16C7DDD0}"; |
10 const wchar_t kChromeUpgradeCode[] = L"{8A69D345-D564-463C-AFF1-A69D9E530F96}"; | 10 const wchar_t kChromeUpgradeCode[] = L"{8A69D345-D564-463C-AFF1-A69D9E530F96}"; |
11 | 11 |
12 const wchar_t kRegPathClients[] = L"Software\\Google\\Update\\Clients"; | 12 const wchar_t kRegPathClients[] = L"Software\\Google\\Update\\Clients"; |
13 const wchar_t kRegPathClientState[] = L"Software\\Google\\Update\\ClientState"; | 13 const wchar_t kRegPathClientState[] = L"Software\\Google\\Update\\ClientState"; |
14 const wchar_t kRegPathClientStateMedium[] | 14 const wchar_t kRegPathClientStateMedium[] |
15 = L"Software\\Google\\Update\\ClientStateMedium"; | 15 = L"Software\\Google\\Update\\ClientStateMedium"; |
16 | 16 |
17 const wchar_t kRegApField[] = L"ap"; | 17 const wchar_t kRegApField[] = L"ap"; |
18 const wchar_t kRegBrowserField[] = L"browser"; | 18 const wchar_t kRegBrowserField[] = L"browser"; |
19 const wchar_t kRegCFEndTempOptOutCmdField[] = L"CFEndTempOptOutCmd"; | |
20 const wchar_t kRegCFOptInCmdField[] = L"CFOptInCmd"; | |
21 const wchar_t kRegCFOptOutCmdField[] = L"CFOptOutCmd"; | |
22 const wchar_t kRegCFTempOptOutCmdField[] = L"CFTempOptOutCmd"; | |
19 const wchar_t kRegClientField[] = L"client"; | 23 const wchar_t kRegClientField[] = L"client"; |
24 const wchar_t kRegCommandLineField[] = L"CommandLine"; | |
20 const wchar_t kRegDidRunField[] = L"dr"; | 25 const wchar_t kRegDidRunField[] = L"dr"; |
26 const wchar_t kRegEULAAceptedField[] = L"eulaaccepted"; | |
21 const wchar_t kRegLangField[] = L"lang"; | 27 const wchar_t kRegLangField[] = L"lang"; |
22 const wchar_t kRegLastCheckedField[] = L"LastChecked"; | 28 const wchar_t kRegLastCheckedField[] = L"LastChecked"; |
29 const wchar_t kRegLastRunTimeField[] = L"lastrun"; | |
30 const wchar_t kRegMSIField[] = L"msi"; | |
robertshield
2011/03/02 14:58:57
kRegMSI... should come after kRegMetrics...
grt (UTC plus 2)
2011/03/02 19:48:28
Done.
| |
23 const wchar_t kRegMetricsId[] = L"metricsid"; | 31 const wchar_t kRegMetricsId[] = L"metricsid"; |
24 const wchar_t kRegMSIField[] = L"msi"; | |
25 const wchar_t kRegNameField[] = L"name"; | 32 const wchar_t kRegNameField[] = L"name"; |
33 const wchar_t kRegOldVersionField[] = L"opv"; | |
26 const wchar_t kRegOopcrashesField[] = L"oopcrashes"; | 34 const wchar_t kRegOopcrashesField[] = L"oopcrashes"; |
27 const wchar_t kRegOldVersionField[] = L"opv"; | 35 const wchar_t kRegRLZBrandField[] = L"brand"; |
36 const wchar_t kRegReferralField[] = L"referral"; | |
28 const wchar_t kRegRenameCmdField[] = L"cmd"; | 37 const wchar_t kRegRenameCmdField[] = L"cmd"; |
29 const wchar_t kRegRLZBrandField[] = L"brand"; | 38 const wchar_t kRegSendsPingsField[] = L"SendsPings"; |
30 const wchar_t kRegUsageStatsField[] = L"usagestats"; | 39 const wchar_t kRegUsageStatsField[] = L"usagestats"; |
31 const wchar_t kRegVersionField[] = L"pv"; | 40 const wchar_t kRegVersionField[] = L"pv"; |
32 const wchar_t kRegReferralField[] = L"referral"; | 41 const wchar_t kRegWebAccessibleField[] = L"WebAccessible"; |
33 const wchar_t kRegEULAAceptedField[] = L"eulaaccepted"; | |
34 const wchar_t kRegLastRunTimeField[] = L"lastrun"; | |
35 const wchar_t kRegCFTempOptOutCmdField[] = L"CFTempOptOutCmd"; | |
36 const wchar_t kRegCFEndTempOptOutCmdField[] = L"CFEndTempOptOutCmd"; | |
37 const wchar_t kRegCFOptOutCmdField[] = L"CFOptOutCmd"; | |
38 const wchar_t kRegCFOptInCmdField[] = L"CFOptInCmd"; | |
39 | 42 |
40 } // namespace google_update | 43 } // namespace google_update |
OLD | NEW |