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

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

Issue 2830983005: Remove old webui History page on desktop and mobile (Closed)
Patch Set: axe more android stuff 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 2860 matching lines...) Expand 10 before | Expand all | Expand 10 after
2914 extern const char kMediaRemotingEncryptedDescription[]; 2906 extern const char kMediaRemotingEncryptedDescription[];
2915 2907
2916 // Chrome OS component updates chrome://flags strings 2908 // Chrome OS component updates chrome://flags strings
2917 2909
2918 // Name for the flag to enable Chrome OS component flash updates 2910 // Name for the flag to enable Chrome OS component flash updates
2919 extern const char kCrosCompUpdatesName[]; 2911 extern const char kCrosCompUpdatesName[];
2920 2912
2921 // Description for the flag to enable Chrome OS component flash updates 2913 // Description for the flag to enable Chrome OS component flash updates
2922 extern const char kCrosCompUpdatesDescription[]; 2914 extern const char kCrosCompUpdatesDescription[];
2923 2915
2924 // Native Android History chrome://flags strings
2925
2926 #if defined(OS_ANDROID)
2927
2928 // Name of the flag that enables the native Android history UI.
2929 extern const char kNativeAndroidHistoryManager[];
2930
2931 // Description of the flag that enables the native Android history UI.
2932 extern const char kNativeAndroidHistoryManagerDescription[];
2933
2934 #endif // defined(OS_ANDROID)
2935
2936 // Play Services LSD permission prompt chrome://flags strings 2916 // Play Services LSD permission prompt chrome://flags strings
2937 2917
2938 #if defined(OS_ANDROID) 2918 #if defined(OS_ANDROID)
2939 2919
2940 // Name for the flag to enable LSD permission prompts on Android 2920 // Name for the flag to enable LSD permission prompts on Android
2941 extern const char kLsdPermissionPromptName[]; 2921 extern const char kLsdPermissionPromptName[];
2942 2922
2943 // Description for the flag to enable LSD permission prompts on Android. 2923 // Description for the flag to enable LSD permission prompts on Android.
2944 extern const char kLsdPermissionPromptDescription[]; 2924 extern const char kLsdPermissionPromptDescription[];
2945 2925
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
3322 3302
3323 // Description of the autoplay policy that has no user gesture requirements. 3303 // Description of the autoplay policy that has no user gesture requirements.
3324 extern const char kAutoplayPolicyNoUserGestureRequired[]; 3304 extern const char kAutoplayPolicyNoUserGestureRequired[];
3325 3305
3326 // Description of the autoplay policy that requires a user gesture. 3306 // Description of the autoplay policy that requires a user gesture.
3327 extern const char kAutoplayPolicyUserGestureRequired[]; 3307 extern const char kAutoplayPolicyUserGestureRequired[];
3328 3308
3329 } // namespace flag_descriptions 3309 } // namespace flag_descriptions
3330 3310
3331 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3311 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698