Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Side by Side Diff: chrome/browser/flag_descriptions.h

Issue 2830983005: Remove old webui History page on desktop and mobile (Closed)
Patch Set: ifdef Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 2854 matching lines...) Expand 10 before | Expand all | Expand 10 after
2908 extern const char kMediaRemotingEncryptedDescription[]; 2900 extern const char kMediaRemotingEncryptedDescription[];
2909 2901
2910 // Chrome OS component updates chrome://flags strings 2902 // Chrome OS component updates chrome://flags strings
2911 2903
2912 // Name for the flag to enable Chrome OS component flash updates 2904 // Name for the flag to enable Chrome OS component flash updates
2913 extern const char kCrosCompUpdatesName[]; 2905 extern const char kCrosCompUpdatesName[];
2914 2906
2915 // Description for the flag to enable Chrome OS component flash updates 2907 // Description for the flag to enable Chrome OS component flash updates
2916 extern const char kCrosCompUpdatesDescription[]; 2908 extern const char kCrosCompUpdatesDescription[];
2917 2909
2918 // Native Android History chrome://flags strings
2919
2920 #if defined(OS_ANDROID)
2921
2922 // Name of the flag that enables the native Android history UI.
2923 extern const char kNativeAndroidHistoryManager[];
2924
2925 // Description of the flag that enables the native Android history UI.
2926 extern const char kNativeAndroidHistoryManagerDescription[];
2927
2928 #endif // defined(OS_ANDROID)
2929
2930 // Play Services LSD permission prompt chrome://flags strings 2910 // Play Services LSD permission prompt chrome://flags strings
2931 2911
2932 #if defined(OS_ANDROID) 2912 #if defined(OS_ANDROID)
2933 2913
2934 // Name for the flag to enable LSD permission prompts on Android 2914 // Name for the flag to enable LSD permission prompts on Android
2935 extern const char kLsdPermissionPromptName[]; 2915 extern const char kLsdPermissionPromptName[];
2936 2916
2937 // Description for the flag to enable LSD permission prompts on Android. 2917 // Description for the flag to enable LSD permission prompts on Android.
2938 extern const char kLsdPermissionPromptDescription[]; 2918 extern const char kLsdPermissionPromptDescription[];
2939 2919
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
3316 3296
3317 // Description of the autoplay policy that has no user gesture requirements. 3297 // Description of the autoplay policy that has no user gesture requirements.
3318 extern const char kAutoplayPolicyNoUserGestureRequired[]; 3298 extern const char kAutoplayPolicyNoUserGestureRequired[];
3319 3299
3320 // Description of the autoplay policy that requires a user gesture. 3300 // Description of the autoplay policy that requires a user gesture.
3321 extern const char kAutoplayPolicyUserGestureRequired[]; 3301 extern const char kAutoplayPolicyUserGestureRequired[];
3322 3302
3323 } // namespace flag_descriptions 3303 } // namespace flag_descriptions
3324 3304
3325 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3305 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698