Chromium Code Reviews| 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 27 matching lines...) Expand all Loading... | |
| 38 extern const wchar_t kRegBrandField[]; | 38 extern const wchar_t kRegBrandField[]; |
| 39 extern const wchar_t kRegBrowserField[]; | 39 extern const wchar_t kRegBrowserField[]; |
| 40 extern const wchar_t kRegCFEndTempOptOutCmdField[]; | 40 extern const wchar_t kRegCFEndTempOptOutCmdField[]; |
| 41 extern const wchar_t kRegCFOptInCmdField[]; | 41 extern const wchar_t kRegCFOptInCmdField[]; |
| 42 extern const wchar_t kRegCFOptOutCmdField[]; | 42 extern const wchar_t kRegCFOptOutCmdField[]; |
| 43 extern const wchar_t kRegCFTempOptOutCmdField[]; | 43 extern const wchar_t kRegCFTempOptOutCmdField[]; |
| 44 extern const wchar_t kRegClientField[]; | 44 extern const wchar_t kRegClientField[]; |
| 45 extern const wchar_t kRegCommandLineField[]; | 45 extern const wchar_t kRegCommandLineField[]; |
| 46 extern const wchar_t kRegCriticalVersionField[]; | 46 extern const wchar_t kRegCriticalVersionField[]; |
| 47 extern const wchar_t kRegDidRunField[]; | 47 extern const wchar_t kRegDidRunField[]; |
| 48 extern const wchar_t kRegDowngradeVersion[]; | |
|
grt (UTC plus 2)
2016/05/19 15:37:28
since this value is used purely by Chrome and isn'
zmin
2016/05/19 23:08:03
Move this to install_util.h as all related code ar
| |
| 48 extern const wchar_t kRegEULAAceptedField[]; | 49 extern const wchar_t kRegEULAAceptedField[]; |
| 49 extern const wchar_t kRegGoogleUpdateVersion[]; | 50 extern const wchar_t kRegGoogleUpdateVersion[]; |
| 50 extern const wchar_t kRegLangField[]; | 51 extern const wchar_t kRegLangField[]; |
| 51 extern const wchar_t kRegLastStartedAUField[]; | 52 extern const wchar_t kRegLastStartedAUField[]; |
| 52 extern const wchar_t kRegLastCheckedField[]; | 53 extern const wchar_t kRegLastCheckedField[]; |
| 53 extern const wchar_t kRegLastCheckSuccessField[]; | 54 extern const wchar_t kRegLastCheckSuccessField[]; |
| 54 extern const wchar_t kRegLastInstallerResultField[]; | 55 extern const wchar_t kRegLastInstallerResultField[]; |
| 55 extern const wchar_t kRegLastInstallerErrorField[]; | 56 extern const wchar_t kRegLastInstallerErrorField[]; |
| 56 extern const wchar_t kRegLastInstallerExtraField[]; | 57 extern const wchar_t kRegLastInstallerExtraField[]; |
| 57 extern const wchar_t kRegMetricsId[]; | 58 extern const wchar_t kRegMetricsId[]; |
| (...skipping 21 matching lines...) Expand all Loading... | |
| 79 // Last time that chrome ran in the Time internal format. | 80 // Last time that chrome ran in the Time internal format. |
| 80 extern const wchar_t kRegLastRunTimeField[]; | 81 extern const wchar_t kRegLastRunTimeField[]; |
| 81 | 82 |
| 82 // The name of the value where Google Update reads the list of experiments for | 83 // The name of the value where Google Update reads the list of experiments for |
| 83 // itself and Chrome. | 84 // itself and Chrome. |
| 84 extern const wchar_t kExperimentLabels[]; | 85 extern const wchar_t kExperimentLabels[]; |
| 85 | 86 |
| 86 } // namespace google_update | 87 } // namespace google_update |
| 87 | 88 |
| 88 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 89 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
| OLD | NEW |