| 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 |
| 11 namespace google_update { | 11 namespace google_update { |
| 12 | 12 |
| 13 // Strictly speaking Google Update doesn't care about this GUID but it is still | |
| 14 // related to install as it is used by MSI to identify Gears. | |
| 15 extern const wchar_t kGearsUpgradeCode[]; | |
| 16 | |
| 17 // The GUID Google Update uses to keep track of Chrome upgrades. | 13 // The GUID Google Update uses to keep track of Chrome upgrades. |
| 18 extern const wchar_t kChromeUpgradeCode[]; | 14 extern const wchar_t kChromeUpgradeCode[]; |
| 19 | 15 |
| 20 extern const wchar_t kRegPathClients[]; | 16 extern const wchar_t kRegPathClients[]; |
| 21 | 17 |
| 22 // The difference between ClientState and ClientStateMedium is that the former | 18 // The difference between ClientState and ClientStateMedium is that the former |
| 23 // lives on HKCU or HKLM and the later always lives in HKLM. The only use of | 19 // lives on HKCU or HKLM and the later always lives in HKLM. The only use of |
| 24 // the ClientStateMedium is for the EULA consent. See bug 1594565. | 20 // the ClientStateMedium is for the EULA consent. See bug 1594565. |
| 25 extern const wchar_t kRegPathClientState[]; | 21 extern const wchar_t kRegPathClientState[]; |
| 26 extern const wchar_t kRegPathClientStateMedium[]; | 22 extern const wchar_t kRegPathClientStateMedium[]; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 54 extern const wchar_t kRegUsageStatsField[]; | 50 extern const wchar_t kRegUsageStatsField[]; |
| 55 extern const wchar_t kRegVersionField[]; | 51 extern const wchar_t kRegVersionField[]; |
| 56 extern const wchar_t kRegWebAccessibleField[]; | 52 extern const wchar_t kRegWebAccessibleField[]; |
| 57 | 53 |
| 58 // last time that chrome ran in the Time internal format. | 54 // last time that chrome ran in the Time internal format. |
| 59 extern const wchar_t kRegLastRunTimeField[]; | 55 extern const wchar_t kRegLastRunTimeField[]; |
| 60 | 56 |
| 61 } // namespace google_update | 57 } // namespace google_update |
| 62 | 58 |
| 63 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 59 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
| OLD | NEW |