| 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 19 matching lines...) Expand all Loading... |
| 46 extern const wchar_t kRegCFEndTempOptOutCmdField[]; | 42 extern const wchar_t kRegCFEndTempOptOutCmdField[]; |
| 47 extern const wchar_t kRegCFOptOutCmdField[]; | 43 extern const wchar_t kRegCFOptOutCmdField[]; |
| 48 extern const wchar_t kRegCFOptInCmdField[]; | 44 extern const wchar_t kRegCFOptInCmdField[]; |
| 49 | 45 |
| 50 // last time that chrome ran in the Time internal format. | 46 // last time that chrome ran in the Time internal format. |
| 51 extern const wchar_t kRegLastRunTimeField[]; | 47 extern const wchar_t kRegLastRunTimeField[]; |
| 52 | 48 |
| 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 |