| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 extern const wchar_t kRegApField[]; | 28 extern const wchar_t kRegApField[]; |
| 29 extern const wchar_t kRegBrandField[]; | 29 extern const wchar_t kRegBrandField[]; |
| 30 extern const wchar_t kRegBrowserField[]; | 30 extern const wchar_t kRegBrowserField[]; |
| 31 extern const wchar_t kRegCFEndTempOptOutCmdField[]; | 31 extern const wchar_t kRegCFEndTempOptOutCmdField[]; |
| 32 extern const wchar_t kRegCFOptInCmdField[]; | 32 extern const wchar_t kRegCFOptInCmdField[]; |
| 33 extern const wchar_t kRegCFOptOutCmdField[]; | 33 extern const wchar_t kRegCFOptOutCmdField[]; |
| 34 extern const wchar_t kRegCFTempOptOutCmdField[]; | 34 extern const wchar_t kRegCFTempOptOutCmdField[]; |
| 35 extern const wchar_t kRegClientField[]; | 35 extern const wchar_t kRegClientField[]; |
| 36 extern const wchar_t kRegCommandLineField[]; | 36 extern const wchar_t kRegCommandLineField[]; |
| 37 extern const wchar_t kRegCriticalUpdateField[]; | 37 extern const wchar_t kRegCriticalVersionField[]; |
| 38 extern const wchar_t kRegDidRunField[]; | 38 extern const wchar_t kRegDidRunField[]; |
| 39 extern const wchar_t kRegEULAAceptedField[]; | 39 extern const wchar_t kRegEULAAceptedField[]; |
| 40 extern const wchar_t kRegLangField[]; | 40 extern const wchar_t kRegLangField[]; |
| 41 extern const wchar_t kRegLastCheckedField[]; | 41 extern const wchar_t kRegLastCheckedField[]; |
| 42 extern const wchar_t kRegMetricsId[]; | 42 extern const wchar_t kRegMetricsId[]; |
| 43 extern const wchar_t kRegMSIField[]; | 43 extern const wchar_t kRegMSIField[]; |
| 44 extern const wchar_t kRegNameField[]; | 44 extern const wchar_t kRegNameField[]; |
| 45 extern const wchar_t kRegOemInstallField[]; | 45 extern const wchar_t kRegOemInstallField[]; |
| 46 extern const wchar_t kRegOldVersionField[]; | 46 extern const wchar_t kRegOldVersionField[]; |
| 47 extern const wchar_t kRegOopcrashesField[]; | 47 extern const wchar_t kRegOopcrashesField[]; |
| 48 extern const wchar_t kRegRLZBrandField[]; | 48 extern const wchar_t kRegRLZBrandField[]; |
| 49 extern const wchar_t kRegRLZReactivationBrandField[]; | 49 extern const wchar_t kRegRLZReactivationBrandField[]; |
| 50 extern const wchar_t kRegReferralField[]; | 50 extern const wchar_t kRegReferralField[]; |
| 51 extern const wchar_t kRegRenameCmdField[]; | 51 extern const wchar_t kRegRenameCmdField[]; |
| 52 extern const wchar_t kRegSendsPingsField[]; | 52 extern const wchar_t kRegSendsPingsField[]; |
| 53 extern const wchar_t kRegUsageStatsField[]; | 53 extern const wchar_t kRegUsageStatsField[]; |
| 54 extern const wchar_t kRegVersionField[]; | 54 extern const wchar_t kRegVersionField[]; |
| 55 extern const wchar_t kRegWebAccessibleField[]; | 55 extern const wchar_t kRegWebAccessibleField[]; |
| 56 | 56 |
| 57 // last time that chrome ran in the Time internal format. | 57 // last time that chrome ran in the Time internal format. |
| 58 extern const wchar_t kRegLastRunTimeField[]; | 58 extern const wchar_t kRegLastRunTimeField[]; |
| 59 | 59 |
| 60 } // namespace google_update | 60 } // namespace google_update |
| 61 | 61 |
| 62 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 62 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
| OLD | NEW |