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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
72 extern const wchar_t kRegRunAsUserField[]; | 72 extern const wchar_t kRegRunAsUserField[]; |
73 extern const wchar_t kRegSendsPingsField[]; | 73 extern const wchar_t kRegSendsPingsField[]; |
74 extern const wchar_t kRegUninstallCmdLine[]; | 74 extern const wchar_t kRegUninstallCmdLine[]; |
75 extern const wchar_t kRegUsageStatsField[]; | 75 extern const wchar_t kRegUsageStatsField[]; |
76 extern const wchar_t kRegVersionField[]; | 76 extern const wchar_t kRegVersionField[]; |
77 extern const wchar_t kRegWebAccessibleField[]; | 77 extern const wchar_t kRegWebAccessibleField[]; |
78 | 78 |
79 // last time that chrome ran in the Time internal format. | 79 // last time that chrome ran in the Time internal format. |
80 extern const wchar_t kRegLastRunTimeField[]; | 80 extern const wchar_t kRegLastRunTimeField[]; |
81 | 81 |
82 #if defined(OS_WIN) | |
Alexei Svitkine (slow)
2015/08/13 16:52:05
Can you check if this file is already Windows-spec
| |
83 // The name of the value where Google Update reads the list of experiments for | |
84 // itself and Chrome. | |
85 extern const wchar_t kExperimentLabels[]; | |
86 #endif | |
87 | |
82 } // namespace google_update | 88 } // namespace google_update |
83 | 89 |
84 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 90 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
OLD | NEW |