OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef COMPONENTS_FLAGS_UI_FLAGS_UI_CONSTANTS_H_ | 5 #ifndef COMPONENTS_FLAGS_UI_FLAGS_UI_CONSTANTS_H_ |
6 #define COMPONENTS_FLAGS_UI_FLAGS_UI_CONSTANTS_H_ | 6 #define COMPONENTS_FLAGS_UI_FLAGS_UI_CONSTANTS_H_ |
7 | 7 |
8 namespace flags_ui { | 8 namespace flags_ui { |
9 | 9 |
10 // Resource paths. | 10 // Resource paths. |
11 // Must match the resource file names. | 11 // Must match the resource file names. |
12 extern const char kFlagsJS[]; | 12 extern const char kFlagsJS[]; |
13 | 13 |
14 // Message handlers. | 14 // Message handlers. |
15 // Must match the constants used in the resource files. | 15 // Must match the constants used in the resource files. |
16 extern const char kEnableExperimentalFeature[]; | 16 extern const char kEnableExperimentalFeature[]; |
17 extern const char kRequestExperimentalFeatures[]; | 17 extern const char kRequestExperimentalFeatures[]; |
18 extern const char kResetAllFlags[]; | 18 extern const char kResetAllFlags[]; |
19 extern const char kRestartBrowser[]; | 19 extern const char kRestartBrowser[]; |
20 | 20 |
21 // Other values. | 21 // Other values. |
22 // Must match the constants used in the resource files. | 22 // Must match the constants used in the resource files. |
23 extern const char kChannelPromoBeta[]; | 23 extern const char kChannelPromoBeta[]; |
24 extern const char kChannelPromoDev[]; | 24 extern const char kChannelPromoDev[]; |
25 extern const char kDisable[]; | 25 extern const char kDisable[]; |
26 extern const char kEnable[]; | 26 extern const char kEnable[]; |
27 extern const char kFlagsBlurb[]; | 27 extern const char kFlagsBlurb[]; |
28 extern const char kFlagsLongTitle[]; | 28 extern const char kFlagsLongTitle[]; |
| 29 extern const char kFlagsNoExperimentsAvailable[]; |
29 extern const char kFlagsNotSupported[]; | 30 extern const char kFlagsNotSupported[]; |
30 extern const char kFlagsRestartButton[]; | 31 extern const char kFlagsRestartButton[]; |
31 extern const char kFlagsRestartNotice[]; | 32 extern const char kFlagsRestartNotice[]; |
32 extern const char kFlagsTableTitle[]; | 33 extern const char kFlagsTableTitle[]; |
33 extern const char kFlagsUnsupportedTableTitle[]; | 34 extern const char kFlagsUnsupportedTableTitle[]; |
34 extern const char kFlagsWarningHeader[]; | 35 extern const char kFlagsWarningHeader[]; |
35 extern const char kNeedsRestart[]; | 36 extern const char kNeedsRestart[]; |
36 extern const char kOwnerWarning[]; | 37 extern const char kOwnerWarning[]; |
37 extern const char kResetAllButton[]; | 38 extern const char kResetAllButton[]; |
38 extern const char kReturnExperimentalFeatures[]; | 39 extern const char kReturnExperimentalFeatures[]; |
39 extern const char kShowBetaChannelPromotion[]; | 40 extern const char kShowBetaChannelPromotion[]; |
40 extern const char kShowDevChannelPromotion[]; | 41 extern const char kShowDevChannelPromotion[]; |
41 extern const char kShowOwnerWarning[]; | 42 extern const char kShowOwnerWarning[]; |
42 extern const char kSupportedFeatures[]; | 43 extern const char kSupportedFeatures[]; |
43 extern const char kUnsupportedFeatures[]; | 44 extern const char kUnsupportedFeatures[]; |
44 | 45 |
45 } // namespace flags_ui | 46 } // namespace flags_ui |
46 | 47 |
47 #endif // COMPONENTS_FLAGS_UI_FLAGS_UI_CONSTANTS_H_ | 48 #endif // COMPONENTS_FLAGS_UI_FLAGS_UI_CONSTANTS_H_ |
OLD | NEW |