| 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 28 matching lines...) Expand all Loading... |
| 39 extern const wchar_t kRegUsageStatsField[]; | 39 extern const wchar_t kRegUsageStatsField[]; |
| 40 extern const wchar_t kRegVersionField[]; | 40 extern const wchar_t kRegVersionField[]; |
| 41 extern const wchar_t kRegReferralField[]; | 41 extern const wchar_t kRegReferralField[]; |
| 42 extern const wchar_t kRegEULAAceptedField[]; | 42 extern const wchar_t kRegEULAAceptedField[]; |
| 43 | 43 |
| 44 extern const wchar_t kEnvProductVersionKey[]; | 44 extern const wchar_t kEnvProductVersionKey[]; |
| 45 | 45 |
| 46 // last time that chrome ran in the Time internal format. | 46 // last time that chrome ran in the Time internal format. |
| 47 extern const wchar_t kRegLastRunTimeField[]; | 47 extern const wchar_t kRegLastRunTimeField[]; |
| 48 | 48 |
| 49 // How often to check if the persistent instance of Chrome needs to restart | |
| 50 // to install an update. | |
| 51 extern const int kUpdateCheckInvervalHours; | |
| 52 | |
| 53 } // namespace google_update | 49 } // namespace google_update |
| 54 | 50 |
| 55 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 51 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
| OLD | NEW |