| 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 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 const wchar_t kRegGoogleUpdateVersion[] = L"version"; | 38 const wchar_t kRegGoogleUpdateVersion[] = L"version"; |
| 39 const wchar_t kRegLangField[] = L"lang"; | 39 const wchar_t kRegLangField[] = L"lang"; |
| 40 const wchar_t kRegLastStartedAUField[] = L"LastStartedAU"; | 40 const wchar_t kRegLastStartedAUField[] = L"LastStartedAU"; |
| 41 const wchar_t kRegLastCheckedField[] = L"LastChecked"; | 41 const wchar_t kRegLastCheckedField[] = L"LastChecked"; |
| 42 const wchar_t kRegLastCheckSuccessField[] = L"LastCheckSuccess"; | 42 const wchar_t kRegLastCheckSuccessField[] = L"LastCheckSuccess"; |
| 43 const wchar_t kRegLastInstallerResultField[] = L"LastInstallerResult"; | 43 const wchar_t kRegLastInstallerResultField[] = L"LastInstallerResult"; |
| 44 const wchar_t kRegLastInstallerErrorField[] = L"LastInstallerError"; | 44 const wchar_t kRegLastInstallerErrorField[] = L"LastInstallerError"; |
| 45 const wchar_t kRegLastInstallerExtraField[] = L"LastInstallerExtraCode1"; | 45 const wchar_t kRegLastInstallerExtraField[] = L"LastInstallerExtraCode1"; |
| 46 const wchar_t kRegLastRunTimeField[] = L"lastrun"; | 46 const wchar_t kRegLastRunTimeField[] = L"lastrun"; |
| 47 const wchar_t kRegMetricsId[] = L"metricsid"; | 47 const wchar_t kRegMetricsId[] = L"metricsid"; |
| 48 const wchar_t kRegMetricsIdEnabledDate[] = L"metricsid_enableddate"; |
| 49 const wchar_t kRegMetricsIdInstallDate[] = L"metricsid_installdate"; |
| 48 const wchar_t kRegMSIField[] = L"msi"; | 50 const wchar_t kRegMSIField[] = L"msi"; |
| 49 const wchar_t kRegNameField[] = L"name"; | 51 const wchar_t kRegNameField[] = L"name"; |
| 50 const wchar_t kRegOemInstallField[] = L"oeminstall"; | 52 const wchar_t kRegOemInstallField[] = L"oeminstall"; |
| 51 const wchar_t kRegOldVersionField[] = L"opv"; | 53 const wchar_t kRegOldVersionField[] = L"opv"; |
| 52 const wchar_t kRegOopcrashesField[] = L"oopcrashes"; | 54 const wchar_t kRegOopcrashesField[] = L"oopcrashes"; |
| 53 const wchar_t kRegPathField[] = L"path"; | 55 const wchar_t kRegPathField[] = L"path"; |
| 54 const wchar_t kRegProfilesActive[] = L"_NumAccounts"; | 56 const wchar_t kRegProfilesActive[] = L"_NumAccounts"; |
| 55 const wchar_t kRegProfilesSignedIn[] = L"_NumSignedIn"; | 57 const wchar_t kRegProfilesSignedIn[] = L"_NumSignedIn"; |
| 56 const wchar_t kRegRLZBrandField[] = L"brand"; | 58 const wchar_t kRegRLZBrandField[] = L"brand"; |
| 57 const wchar_t kRegRLZReactivationBrandField[] = L"reactivationbrand"; | 59 const wchar_t kRegRLZReactivationBrandField[] = L"reactivationbrand"; |
| 58 const wchar_t kRegReferralField[] = L"referral"; | 60 const wchar_t kRegReferralField[] = L"referral"; |
| 59 const wchar_t kRegRenameCmdField[] = L"cmd"; | 61 const wchar_t kRegRenameCmdField[] = L"cmd"; |
| 60 const wchar_t kRegRunAsUserField[] = L"RunAsUser"; | 62 const wchar_t kRegRunAsUserField[] = L"RunAsUser"; |
| 61 const wchar_t kRegSendsPingsField[] = L"SendsPings"; | 63 const wchar_t kRegSendsPingsField[] = L"SendsPings"; |
| 62 const wchar_t kRegUninstallCmdLine[] = L"UninstallCmdLine"; | 64 const wchar_t kRegUninstallCmdLine[] = L"UninstallCmdLine"; |
| 63 const wchar_t kRegUsageStatsField[] = L"usagestats"; | 65 const wchar_t kRegUsageStatsField[] = L"usagestats"; |
| 64 const wchar_t kRegVersionField[] = L"pv"; | 66 const wchar_t kRegVersionField[] = L"pv"; |
| 65 const wchar_t kRegWebAccessibleField[] = L"WebAccessible"; | 67 const wchar_t kRegWebAccessibleField[] = L"WebAccessible"; |
| 66 | 68 |
| 67 } // namespace google_update | 69 } // namespace google_update |
| OLD | NEW |