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 #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 kChromeUpgradeCode[] = L"{8A69D345-D564-463C-AFF1-A69D9E530F96}"; | 9 const wchar_t kChromeUpgradeCode[] = L"{8A69D345-D564-463C-AFF1-A69D9E530F96}"; |
10 const wchar_t kGoogleUpdateUpgradeCode[] = | 10 const wchar_t kGoogleUpdateUpgradeCode[] = |
11 L"{430FD4D0-B729-4F61-AA34-91526481799D}"; | 11 L"{430FD4D0-B729-4F61-AA34-91526481799D}"; |
12 | 12 |
13 const wchar_t kRegPathClients[] = L"Software\\Google\\Update\\Clients"; | 13 const wchar_t kRegPathClients[] = L"Software\\Google\\Update\\Clients"; |
14 const wchar_t kRegPathClientState[] = L"Software\\Google\\Update\\ClientState"; | 14 const wchar_t kRegPathClientState[] = L"Software\\Google\\Update\\ClientState"; |
15 const wchar_t kRegPathClientStateMedium[] = | 15 const wchar_t kRegPathClientStateMedium[] = |
16 L"Software\\Google\\Update\\ClientStateMedium"; | 16 L"Software\\Google\\Update\\ClientStateMedium"; |
17 const wchar_t kRegPathGoogleUpdate[] = L"Software\\Google\\Update"; | 17 const wchar_t kRegPathGoogleUpdate[] = L"Software\\Google\\Update"; |
18 | 18 |
19 const wchar_t kRegCommandsKey[] = L"Commands"; | 19 const wchar_t kRegCommandsKey[] = L"Commands"; |
20 | 20 |
21 const wchar_t kRegApField[] = L"ap"; | 21 const wchar_t kRegApField[] = L"ap"; |
| 22 const wchar_t kRegAutoRunOnOSUpgradeField[] = L"AutoRunOnOSUpgrade"; |
22 const wchar_t kRegBrandField[] = L"brand"; | 23 const wchar_t kRegBrandField[] = L"brand"; |
23 const wchar_t kRegBrowserField[] = L"browser"; | 24 const wchar_t kRegBrowserField[] = L"browser"; |
24 const wchar_t kRegCFEndTempOptOutCmdField[] = L"CFEndTempOptOutCmd"; | 25 const wchar_t kRegCFEndTempOptOutCmdField[] = L"CFEndTempOptOutCmd"; |
25 const wchar_t kRegCFOptInCmdField[] = L"CFOptInCmd"; | 26 const wchar_t kRegCFOptInCmdField[] = L"CFOptInCmd"; |
26 const wchar_t kRegCFOptOutCmdField[] = L"CFOptOutCmd"; | 27 const wchar_t kRegCFOptOutCmdField[] = L"CFOptOutCmd"; |
27 const wchar_t kRegCFTempOptOutCmdField[] = L"CFTempOptOutCmd"; | 28 const wchar_t kRegCFTempOptOutCmdField[] = L"CFTempOptOutCmd"; |
28 const wchar_t kRegClientField[] = L"client"; | 29 const wchar_t kRegClientField[] = L"client"; |
29 const wchar_t kRegCommandLineField[] = L"CommandLine"; | 30 const wchar_t kRegCommandLineField[] = L"CommandLine"; |
30 const wchar_t kRegCriticalVersionField[] = L"cpv"; | 31 const wchar_t kRegCriticalVersionField[] = L"cpv"; |
31 const wchar_t kRegDidRunField[] = L"dr"; | 32 const wchar_t kRegDidRunField[] = L"dr"; |
(...skipping 17 matching lines...) Expand all Loading... |
49 const wchar_t kRegRLZReactivationBrandField[] = L"reactivationbrand"; | 50 const wchar_t kRegRLZReactivationBrandField[] = L"reactivationbrand"; |
50 const wchar_t kRegReferralField[] = L"referral"; | 51 const wchar_t kRegReferralField[] = L"referral"; |
51 const wchar_t kRegRenameCmdField[] = L"cmd"; | 52 const wchar_t kRegRenameCmdField[] = L"cmd"; |
52 const wchar_t kRegSendsPingsField[] = L"SendsPings"; | 53 const wchar_t kRegSendsPingsField[] = L"SendsPings"; |
53 const wchar_t kRegUninstallCmdLine[] = L"UninstallCmdLine"; | 54 const wchar_t kRegUninstallCmdLine[] = L"UninstallCmdLine"; |
54 const wchar_t kRegUsageStatsField[] = L"usagestats"; | 55 const wchar_t kRegUsageStatsField[] = L"usagestats"; |
55 const wchar_t kRegVersionField[] = L"pv"; | 56 const wchar_t kRegVersionField[] = L"pv"; |
56 const wchar_t kRegWebAccessibleField[] = L"WebAccessible"; | 57 const wchar_t kRegWebAccessibleField[] = L"WebAccessible"; |
57 | 58 |
58 } // namespace google_update | 59 } // namespace google_update |
OLD | NEW |