OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
7 | 7 |
8 // Includes needed for macros allowing conditional compilation of some strings. | 8 // Includes needed for macros allowing conditional compilation of some strings. |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 #include "build/buildflag.h" | 10 #include "build/buildflag.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 extern const char kEnableMaterialDesignBookmarksDescription[]; | 26 extern const char kEnableMaterialDesignBookmarksDescription[]; |
27 | 27 |
28 // Material Design version of chrome://policy | 28 // Material Design version of chrome://policy |
29 | 29 |
30 // Name for the flag to enable the material design policy page. | 30 // Name for the flag to enable the material design policy page. |
31 extern const char kEnableMaterialDesignPolicyPageName[]; | 31 extern const char kEnableMaterialDesignPolicyPageName[]; |
32 | 32 |
33 // Description for the flag to enable the material design policy page. | 33 // Description for the flag to enable the material design policy page. |
34 extern const char kEnableMaterialDesignPolicyPageDescription[]; | 34 extern const char kEnableMaterialDesignPolicyPageDescription[]; |
35 | 35 |
36 // Material Design version of chrome://history | |
37 | |
38 // Name for the flag to enable the material design history page. | |
39 extern const char kEnableMaterialDesignHistoryName[]; | |
40 | |
41 // Description for the flag to enable the material design history page. | |
42 extern const char kEnableMaterialDesignHistoryDescription[]; | |
43 | |
44 // Material Design version of chrome://settings | 36 // Material Design version of chrome://settings |
45 | 37 |
46 // Name for the flag to enable the material design settings page. | 38 // Name for the flag to enable the material design settings page. |
47 extern const char kEnableMaterialDesignSettingsName[]; | 39 extern const char kEnableMaterialDesignSettingsName[]; |
48 | 40 |
49 // Description for the flag to enable the material design settings page. | 41 // Description for the flag to enable the material design settings page. |
50 extern const char kEnableMaterialDesignSettingsDescription[]; | 42 extern const char kEnableMaterialDesignSettingsDescription[]; |
51 | 43 |
52 // Material Design version of chrome://extensions | 44 // Material Design version of chrome://extensions |
53 | 45 |
(...skipping 2887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2941 extern const char kMediaRemotingDescription[]; | 2933 extern const char kMediaRemotingDescription[]; |
2942 | 2934 |
2943 // Chrome OS component updates chrome://flags strings | 2935 // Chrome OS component updates chrome://flags strings |
2944 | 2936 |
2945 // Name for the flag to enable Chrome OS component flash updates | 2937 // Name for the flag to enable Chrome OS component flash updates |
2946 extern const char kCrosCompUpdatesName[]; | 2938 extern const char kCrosCompUpdatesName[]; |
2947 | 2939 |
2948 // Description for the flag to enable Chrome OS component flash updates | 2940 // Description for the flag to enable Chrome OS component flash updates |
2949 extern const char kCrosCompUpdatesDescription[]; | 2941 extern const char kCrosCompUpdatesDescription[]; |
2950 | 2942 |
2951 // Native Android History chrome://flags strings | |
2952 | |
2953 #if defined(OS_ANDROID) | |
2954 | |
2955 // Name of the flag that enables the native Android history UI. | |
2956 extern const char kNativeAndroidHistoryManager[]; | |
2957 | |
2958 // Description of the flag that enables the native Android history UI. | |
2959 extern const char kNativeAndroidHistoryManagerDescription[]; | |
2960 | |
2961 #endif // defined(OS_ANDROID) | |
2962 | |
2963 // Play Services LSD permission prompt chrome://flags strings | 2943 // Play Services LSD permission prompt chrome://flags strings |
2964 | 2944 |
2965 #if defined(OS_ANDROID) | 2945 #if defined(OS_ANDROID) |
2966 | 2946 |
2967 // Name for the flag to enable LSD permission prompts on Android | 2947 // Name for the flag to enable LSD permission prompts on Android |
2968 extern const char kLsdPermissionPromptName[]; | 2948 extern const char kLsdPermissionPromptName[]; |
2969 | 2949 |
2970 // Description for the flag to enable LSD permission prompts on Android. | 2950 // Description for the flag to enable LSD permission prompts on Android. |
2971 extern const char kLsdPermissionPromptDescription[]; | 2951 extern const char kLsdPermissionPromptDescription[]; |
2972 | 2952 |
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3374 extern const char kEnableHeapProfilingDescription[]; | 3354 extern const char kEnableHeapProfilingDescription[]; |
3375 | 3355 |
3376 // Descriptions of the different heap profiling modes. | 3356 // Descriptions of the different heap profiling modes. |
3377 extern const char kEnableHeapProfilingModePseudo[]; | 3357 extern const char kEnableHeapProfilingModePseudo[]; |
3378 extern const char kEnableHeapProfilingModeNative[]; | 3358 extern const char kEnableHeapProfilingModeNative[]; |
3379 extern const char kEnableHeapProfilingTaskProfiler[]; | 3359 extern const char kEnableHeapProfilingTaskProfiler[]; |
3380 | 3360 |
3381 } // namespace flag_descriptions | 3361 } // namespace flag_descriptions |
3382 | 3362 |
3383 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3363 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |