| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 13 matching lines...) Expand all Loading... |
| 24 extern const wchar_t kRegPathClientState[]; | 24 extern const wchar_t kRegPathClientState[]; |
| 25 extern const wchar_t kRegPathClientStateMedium[]; | 25 extern const wchar_t kRegPathClientStateMedium[]; |
| 26 | 26 |
| 27 extern const wchar_t kRegApField[]; | 27 extern const wchar_t kRegApField[]; |
| 28 extern const wchar_t kRegBrowserField[]; | 28 extern const wchar_t kRegBrowserField[]; |
| 29 extern const wchar_t kRegClientField[]; | 29 extern const wchar_t kRegClientField[]; |
| 30 extern const wchar_t kRegDidRunField[]; | 30 extern const wchar_t kRegDidRunField[]; |
| 31 extern const wchar_t kRegLangField[]; | 31 extern const wchar_t kRegLangField[]; |
| 32 extern const wchar_t kRegLastCheckedField[]; | 32 extern const wchar_t kRegLastCheckedField[]; |
| 33 extern const wchar_t kRegMetricsId[]; | 33 extern const wchar_t kRegMetricsId[]; |
| 34 extern const wchar_t kRegMSIField[]; |
| 34 extern const wchar_t kRegNameField[]; | 35 extern const wchar_t kRegNameField[]; |
| 35 extern const wchar_t kRegOldVersionField[]; | 36 extern const wchar_t kRegOldVersionField[]; |
| 36 extern const wchar_t kRegRenameCmdField[]; | 37 extern const wchar_t kRegRenameCmdField[]; |
| 37 extern const wchar_t kRegRLZBrandField[]; | 38 extern const wchar_t kRegRLZBrandField[]; |
| 38 extern const wchar_t kRegUsageStatsField[]; | 39 extern const wchar_t kRegUsageStatsField[]; |
| 39 extern const wchar_t kRegVersionField[]; | 40 extern const wchar_t kRegVersionField[]; |
| 40 extern const wchar_t kRegReferralField[]; | 41 extern const wchar_t kRegReferralField[]; |
| 41 extern const wchar_t kRegEULAAceptedField[]; | 42 extern const wchar_t kRegEULAAceptedField[]; |
| 42 | 43 |
| 43 extern const wchar_t kEnvProductVersionKey[]; | 44 extern const wchar_t kEnvProductVersionKey[]; |
| 44 | 45 |
| 45 // last time that chrome ran in the Time internal format. | 46 // last time that chrome ran in the Time internal format. |
| 46 extern const wchar_t kRegLastRunTimeField[]; | 47 extern const wchar_t kRegLastRunTimeField[]; |
| 47 | 48 |
| 48 // How often to check if the persistent instance of Chrome needs to restart | 49 // How often to check if the persistent instance of Chrome needs to restart |
| 49 // to install an update. | 50 // to install an update. |
| 50 extern const int kUpdateCheckInvervalHours; | 51 extern const int kUpdateCheckInvervalHours; |
| 51 | 52 |
| 52 } // namespace google_update | 53 } // namespace google_update |
| 53 | 54 |
| 54 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 55 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
| OLD | NEW |