| 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 // Defines all the command-line switches used with Google Update. | 5 // Defines all the command-line switches used with Google Update. |
| 6 | 6 |
| 7 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 7 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
| 8 #define CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 8 #define CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
| 9 | 9 |
| 10 namespace google_update { | 10 namespace google_update { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 extern const wchar_t kRegEULAAceptedField[]; | 48 extern const wchar_t kRegEULAAceptedField[]; |
| 49 extern const wchar_t kRegGoogleUpdateVersion[]; | 49 extern const wchar_t kRegGoogleUpdateVersion[]; |
| 50 extern const wchar_t kRegLangField[]; | 50 extern const wchar_t kRegLangField[]; |
| 51 extern const wchar_t kRegLastStartedAUField[]; | 51 extern const wchar_t kRegLastStartedAUField[]; |
| 52 extern const wchar_t kRegLastCheckedField[]; | 52 extern const wchar_t kRegLastCheckedField[]; |
| 53 extern const wchar_t kRegLastCheckSuccessField[]; | 53 extern const wchar_t kRegLastCheckSuccessField[]; |
| 54 extern const wchar_t kRegLastInstallerResultField[]; | 54 extern const wchar_t kRegLastInstallerResultField[]; |
| 55 extern const wchar_t kRegLastInstallerErrorField[]; | 55 extern const wchar_t kRegLastInstallerErrorField[]; |
| 56 extern const wchar_t kRegLastInstallerExtraField[]; | 56 extern const wchar_t kRegLastInstallerExtraField[]; |
| 57 extern const wchar_t kRegMetricsId[]; | 57 extern const wchar_t kRegMetricsId[]; |
| 58 extern const wchar_t kRegMetricsIdDate[]; |
| 58 extern const wchar_t kRegMSIField[]; | 59 extern const wchar_t kRegMSIField[]; |
| 59 extern const wchar_t kRegNameField[]; | 60 extern const wchar_t kRegNameField[]; |
| 60 extern const wchar_t kRegOemInstallField[]; | 61 extern const wchar_t kRegOemInstallField[]; |
| 61 extern const wchar_t kRegOldVersionField[]; | 62 extern const wchar_t kRegOldVersionField[]; |
| 62 extern const wchar_t kRegOopcrashesField[]; | 63 extern const wchar_t kRegOopcrashesField[]; |
| 63 extern const wchar_t kRegPathField[]; | 64 extern const wchar_t kRegPathField[]; |
| 64 extern const wchar_t kRegProfilesActive[]; | 65 extern const wchar_t kRegProfilesActive[]; |
| 65 extern const wchar_t kRegProfilesSignedIn[]; | 66 extern const wchar_t kRegProfilesSignedIn[]; |
| 66 extern const wchar_t kRegRLZBrandField[]; | 67 extern const wchar_t kRegRLZBrandField[]; |
| 67 extern const wchar_t kRegRLZReactivationBrandField[]; | 68 extern const wchar_t kRegRLZReactivationBrandField[]; |
| 68 extern const wchar_t kRegReferralField[]; | 69 extern const wchar_t kRegReferralField[]; |
| 69 extern const wchar_t kRegRenameCmdField[]; | 70 extern const wchar_t kRegRenameCmdField[]; |
| 70 extern const wchar_t kRegRunAsUserField[]; | 71 extern const wchar_t kRegRunAsUserField[]; |
| 71 extern const wchar_t kRegSendsPingsField[]; | 72 extern const wchar_t kRegSendsPingsField[]; |
| 72 extern const wchar_t kRegUninstallCmdLine[]; | 73 extern const wchar_t kRegUninstallCmdLine[]; |
| 73 extern const wchar_t kRegUsageStatsField[]; | 74 extern const wchar_t kRegUsageStatsField[]; |
| 74 extern const wchar_t kRegVersionField[]; | 75 extern const wchar_t kRegVersionField[]; |
| 75 extern const wchar_t kRegWebAccessibleField[]; | 76 extern const wchar_t kRegWebAccessibleField[]; |
| 76 | 77 |
| 77 // last time that chrome ran in the Time internal format. | 78 // last time that chrome ran in the Time internal format. |
| 78 extern const wchar_t kRegLastRunTimeField[]; | 79 extern const wchar_t kRegLastRunTimeField[]; |
| 79 | 80 |
| 80 } // namespace google_update | 81 } // namespace google_update |
| 81 | 82 |
| 82 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 83 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
| OLD | NEW |