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 12 matching lines...) Expand all Loading... | |
23 extern const wchar_t kRegPathClientState[]; | 23 extern const wchar_t kRegPathClientState[]; |
24 extern const wchar_t kRegPathClientStateMedium[]; | 24 extern const wchar_t kRegPathClientStateMedium[]; |
25 | 25 |
26 extern const wchar_t kRegPathGoogleUpdate[]; | 26 extern const wchar_t kRegPathGoogleUpdate[]; |
27 | 27 |
28 // The name of the "Commands" key that lives in an app's Clients key | 28 // The name of the "Commands" key that lives in an app's Clients key |
29 // (a.k.a. "Version" key). | 29 // (a.k.a. "Version" key). |
30 extern const wchar_t kRegCommandsKey[]; | 30 extern const wchar_t kRegCommandsKey[]; |
31 | 31 |
32 extern const wchar_t kRegApField[]; | 32 extern const wchar_t kRegApField[]; |
33 extern const wchar_t kRegAutoRunOnOSUpgrade[]; | |
grt (UTC plus 2)
2012/09/01 01:30:24
this should have the "Field" suffix like the other
huangs
2012/09/01 21:38:03
Done, 4 changes in 3 files.
| |
33 extern const wchar_t kRegBrandField[]; | 34 extern const wchar_t kRegBrandField[]; |
34 extern const wchar_t kRegBrowserField[]; | 35 extern const wchar_t kRegBrowserField[]; |
35 extern const wchar_t kRegCFEndTempOptOutCmdField[]; | 36 extern const wchar_t kRegCFEndTempOptOutCmdField[]; |
36 extern const wchar_t kRegCFOptInCmdField[]; | 37 extern const wchar_t kRegCFOptInCmdField[]; |
37 extern const wchar_t kRegCFOptOutCmdField[]; | 38 extern const wchar_t kRegCFOptOutCmdField[]; |
38 extern const wchar_t kRegCFTempOptOutCmdField[]; | 39 extern const wchar_t kRegCFTempOptOutCmdField[]; |
39 extern const wchar_t kRegClientField[]; | 40 extern const wchar_t kRegClientField[]; |
40 extern const wchar_t kRegCommandLineField[]; | 41 extern const wchar_t kRegCommandLineField[]; |
41 extern const wchar_t kRegCriticalVersionField[]; | 42 extern const wchar_t kRegCriticalVersionField[]; |
42 extern const wchar_t kRegDidRunField[]; | 43 extern const wchar_t kRegDidRunField[]; |
(...skipping 21 matching lines...) Expand all Loading... | |
64 extern const wchar_t kRegUsageStatsField[]; | 65 extern const wchar_t kRegUsageStatsField[]; |
65 extern const wchar_t kRegVersionField[]; | 66 extern const wchar_t kRegVersionField[]; |
66 extern const wchar_t kRegWebAccessibleField[]; | 67 extern const wchar_t kRegWebAccessibleField[]; |
67 | 68 |
68 // last time that chrome ran in the Time internal format. | 69 // last time that chrome ran in the Time internal format. |
69 extern const wchar_t kRegLastRunTimeField[]; | 70 extern const wchar_t kRegLastRunTimeField[]; |
70 | 71 |
71 } // namespace google_update | 72 } // namespace google_update |
72 | 73 |
73 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 74 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
OLD | NEW |