| 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 |
| 11 const wchar_t kExperimentLabels[] = L"experiment_labels"; |
| 12 |
| 10 const wchar_t kGoogleUpdateUpgradeCode[] = | 13 const wchar_t kGoogleUpdateUpgradeCode[] = |
| 11 L"{430FD4D0-B729-4F61-AA34-91526481799D}"; | 14 L"{430FD4D0-B729-4F61-AA34-91526481799D}"; |
| 12 | 15 |
| 13 const wchar_t kGoogleUpdateSetupExe[] = L"GoogleUpdateSetup.exe"; | 16 const wchar_t kGoogleUpdateSetupExe[] = L"GoogleUpdateSetup.exe"; |
| 14 | 17 |
| 15 const wchar_t kRegPathClients[] = L"Software\\Google\\Update\\Clients"; | 18 const wchar_t kRegPathClients[] = L"Software\\Google\\Update\\Clients"; |
| 16 const wchar_t kRegPathClientState[] = L"Software\\Google\\Update\\ClientState"; | 19 const wchar_t kRegPathClientState[] = L"Software\\Google\\Update\\ClientState"; |
| 17 const wchar_t kRegPathClientStateMedium[] = | 20 const wchar_t kRegPathClientStateMedium[] = |
| 18 L"Software\\Google\\Update\\ClientStateMedium"; | 21 L"Software\\Google\\Update\\ClientStateMedium"; |
| 19 const wchar_t kRegPathGoogleUpdate[] = L"Software\\Google\\Update"; | 22 const wchar_t kRegPathGoogleUpdate[] = L"Software\\Google\\Update"; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 const wchar_t kRegRLZReactivationBrandField[] = L"reactivationbrand"; | 56 const wchar_t kRegRLZReactivationBrandField[] = L"reactivationbrand"; |
| 54 const wchar_t kRegReferralField[] = L"referral"; | 57 const wchar_t kRegReferralField[] = L"referral"; |
| 55 const wchar_t kRegRenameCmdField[] = L"cmd"; | 58 const wchar_t kRegRenameCmdField[] = L"cmd"; |
| 56 const wchar_t kRegSendsPingsField[] = L"SendsPings"; | 59 const wchar_t kRegSendsPingsField[] = L"SendsPings"; |
| 57 const wchar_t kRegUninstallCmdLine[] = L"UninstallCmdLine"; | 60 const wchar_t kRegUninstallCmdLine[] = L"UninstallCmdLine"; |
| 58 const wchar_t kRegUsageStatsField[] = L"usagestats"; | 61 const wchar_t kRegUsageStatsField[] = L"usagestats"; |
| 59 const wchar_t kRegVersionField[] = L"pv"; | 62 const wchar_t kRegVersionField[] = L"pv"; |
| 60 const wchar_t kRegWebAccessibleField[] = L"WebAccessible"; | 63 const wchar_t kRegWebAccessibleField[] = L"WebAccessible"; |
| 61 | 64 |
| 62 } // namespace google_update | 65 } // namespace google_update |
| OLD | NEW |