| 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 16 matching lines...) Expand all Loading... |
| 27 const wchar_t kRegBrandField[] = L"brand"; | 27 const wchar_t kRegBrandField[] = L"brand"; |
| 28 const wchar_t kRegBrowserField[] = L"browser"; | 28 const wchar_t kRegBrowserField[] = L"browser"; |
| 29 const wchar_t kRegCFEndTempOptOutCmdField[] = L"CFEndTempOptOutCmd"; | 29 const wchar_t kRegCFEndTempOptOutCmdField[] = L"CFEndTempOptOutCmd"; |
| 30 const wchar_t kRegCFOptInCmdField[] = L"CFOptInCmd"; | 30 const wchar_t kRegCFOptInCmdField[] = L"CFOptInCmd"; |
| 31 const wchar_t kRegCFOptOutCmdField[] = L"CFOptOutCmd"; | 31 const wchar_t kRegCFOptOutCmdField[] = L"CFOptOutCmd"; |
| 32 const wchar_t kRegCFTempOptOutCmdField[] = L"CFTempOptOutCmd"; | 32 const wchar_t kRegCFTempOptOutCmdField[] = L"CFTempOptOutCmd"; |
| 33 const wchar_t kRegClientField[] = L"client"; | 33 const wchar_t kRegClientField[] = L"client"; |
| 34 const wchar_t kRegCommandLineField[] = L"CommandLine"; | 34 const wchar_t kRegCommandLineField[] = L"CommandLine"; |
| 35 const wchar_t kRegCriticalVersionField[] = L"cpv"; | 35 const wchar_t kRegCriticalVersionField[] = L"cpv"; |
| 36 const wchar_t kRegDidRunField[] = L"dr"; | 36 const wchar_t kRegDidRunField[] = L"dr"; |
| 37 const wchar_t kRegDidRunStat[] = L"_DidRun"; |
| 37 const wchar_t kRegEULAAceptedField[] = L"eulaaccepted"; | 38 const wchar_t kRegEULAAceptedField[] = L"eulaaccepted"; |
| 38 const wchar_t kRegGoogleUpdateVersion[] = L"version"; | 39 const wchar_t kRegGoogleUpdateVersion[] = L"version"; |
| 39 const wchar_t kRegInstallerProgress[] = L"InstallerProgress"; | 40 const wchar_t kRegInstallerProgress[] = L"InstallerProgress"; |
| 40 const wchar_t kRegLangField[] = L"lang"; | 41 const wchar_t kRegLangField[] = L"lang"; |
| 41 const wchar_t kRegLastStartedAUField[] = L"LastStartedAU"; | 42 const wchar_t kRegLastStartedAUField[] = L"LastStartedAU"; |
| 42 const wchar_t kRegLastCheckedField[] = L"LastChecked"; | 43 const wchar_t kRegLastCheckedField[] = L"LastChecked"; |
| 43 const wchar_t kRegLastCheckSuccessField[] = L"LastCheckSuccess"; | 44 const wchar_t kRegLastCheckSuccessField[] = L"LastCheckSuccess"; |
| 44 const wchar_t kRegLastInstallerResultField[] = L"LastInstallerResult"; | 45 const wchar_t kRegLastInstallerResultField[] = L"LastInstallerResult"; |
| 45 const wchar_t kRegLastInstallerErrorField[] = L"LastInstallerError"; | 46 const wchar_t kRegLastInstallerErrorField[] = L"LastInstallerError"; |
| 46 const wchar_t kRegLastInstallerExtraField[] = L"LastInstallerExtraCode1"; | 47 const wchar_t kRegLastInstallerExtraField[] = L"LastInstallerExtraCode1"; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 63 const wchar_t kRegRunAsUserField[] = L"RunAsUser"; | 64 const wchar_t kRegRunAsUserField[] = L"RunAsUser"; |
| 64 const wchar_t kRegSendsPingsField[] = L"SendsPings"; | 65 const wchar_t kRegSendsPingsField[] = L"SendsPings"; |
| 65 const wchar_t kRegUninstallCmdLine[] = L"UninstallCmdLine"; | 66 const wchar_t kRegUninstallCmdLine[] = L"UninstallCmdLine"; |
| 66 const wchar_t kRegUsageStatsField[] = L"usagestats"; | 67 const wchar_t kRegUsageStatsField[] = L"usagestats"; |
| 67 const wchar_t kRegVersionField[] = L"pv"; | 68 const wchar_t kRegVersionField[] = L"pv"; |
| 68 const wchar_t kRegWebAccessibleField[] = L"WebAccessible"; | 69 const wchar_t kRegWebAccessibleField[] = L"WebAccessible"; |
| 69 | 70 |
| 70 const wchar_t kExperimentLabels[] = L"experiment_labels"; | 71 const wchar_t kExperimentLabels[] = L"experiment_labels"; |
| 71 | 72 |
| 72 } // namespace google_update | 73 } // namespace google_update |
| OLD | NEW |