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 #include "base/string16.h" | |
Alexei Svitkine (slow)
2013/08/30 14:17:19
I think this is "base/strings/string16.h" now.
gab
2013/08/30 17:53:11
Right, my bad, done.
| |
11 | |
10 namespace google_update { | 12 namespace google_update { |
11 | 13 |
12 // The GUID Google Update uses to keep track of Chrome upgrades. | 14 // The GUID Google Update uses to keep track of Chrome upgrades. |
13 extern const wchar_t kChromeUpgradeCode[]; | 15 extern const wchar_t kChromeUpgradeCode[]; |
14 | 16 |
15 // The name of the value where Google Update reads the list of experiments for | 17 // The name of the value where Google Update reads the list of experiments for |
16 // itself and Chrome. | 18 // itself and Chrome. |
17 extern const wchar_t kExperimentLabels[]; | 19 extern const char16 kExperimentLabels[]; |
20 | |
21 // The separator used to separate items in kExperimentLabels. | |
22 extern const wchar_t kExperimentLabelSep[]; | |
18 | 23 |
19 // The GUID Google Update uses to keep track of Google Update self-upgrades. | 24 // The GUID Google Update uses to keep track of Google Update self-upgrades. |
20 extern const wchar_t kGoogleUpdateUpgradeCode[]; | 25 extern const wchar_t kGoogleUpdateUpgradeCode[]; |
21 | 26 |
22 extern const wchar_t kGoogleUpdateSetupExe[]; | 27 extern const wchar_t kGoogleUpdateSetupExe[]; |
23 | 28 |
24 extern const wchar_t kRegPathClients[]; | 29 extern const wchar_t kRegPathClients[]; |
25 | 30 |
26 // The difference between ClientState and ClientStateMedium is that the former | 31 // The difference between ClientState and ClientStateMedium is that the former |
27 // lives on HKCU or HKLM and the later always lives in HKLM. ClientStateMedium | 32 // lives on HKCU or HKLM and the later always lives in HKLM. ClientStateMedium |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
74 extern const wchar_t kRegUsageStatsField[]; | 79 extern const wchar_t kRegUsageStatsField[]; |
75 extern const wchar_t kRegVersionField[]; | 80 extern const wchar_t kRegVersionField[]; |
76 extern const wchar_t kRegWebAccessibleField[]; | 81 extern const wchar_t kRegWebAccessibleField[]; |
77 | 82 |
78 // last time that chrome ran in the Time internal format. | 83 // last time that chrome ran in the Time internal format. |
79 extern const wchar_t kRegLastRunTimeField[]; | 84 extern const wchar_t kRegLastRunTimeField[]; |
80 | 85 |
81 } // namespace google_update | 86 } // namespace google_update |
82 | 87 |
83 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ | 88 #endif // CHROME_INSTALLER_UTIL_GOOGLE_UPDATE_CONSTANTS_H_ |
OLD | NEW |