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

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

Issue 2830983005: Remove old webui History page on desktop and mobile (Closed)
Patch Set: fix unused var 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 #include "chrome/browser/flag_descriptions.h" 5 #include "chrome/browser/flag_descriptions.h"
6 6
7 namespace flag_descriptions { 7 namespace flag_descriptions {
8 8
9 // Material Design version of chrome://bookmarks 9 // Material Design version of chrome://bookmarks
10 10
11 const char kEnableMaterialDesignBookmarksName[] = 11 const char kEnableMaterialDesignBookmarksName[] =
12 "Enable Material Design bookmarks"; 12 "Enable Material Design bookmarks";
13 13
14 const char kEnableMaterialDesignBookmarksDescription[] = 14 const char kEnableMaterialDesignBookmarksDescription[] =
15 "If enabled, the chrome://bookmarks/ URL loads the Material Design " 15 "If enabled, the chrome://bookmarks/ URL loads the Material Design "
16 "bookmarks page."; 16 "bookmarks page.";
17 17
18 // Material Design version of chrome://policy 18 // Material Design version of chrome://policy
19 19
20 const char kEnableMaterialDesignPolicyPageName[] = 20 const char kEnableMaterialDesignPolicyPageName[] =
21 "Enable Material Design policy page"; 21 "Enable Material Design policy page";
22 22
23 const char kEnableMaterialDesignPolicyPageDescription[] = 23 const char kEnableMaterialDesignPolicyPageDescription[] =
24 "If enabled, the chrome://md-policy URL loads the Material Design " 24 "If enabled, the chrome://md-policy URL loads the Material Design "
25 "policy page."; 25 "policy page.";
26 26
27 // Material Design version of chrome://history
28
29 const char kEnableMaterialDesignHistoryName[] =
30 "Enable Material Design history";
31
32 const char kEnableMaterialDesignHistoryDescription[] =
33 "If enabled, the chrome://history/ URL loads the Material Design "
34 "history page.";
35
36 // Material Design version of chrome://settings 27 // Material Design version of chrome://settings
37 28
38 const char kEnableMaterialDesignSettingsName[] = 29 const char kEnableMaterialDesignSettingsName[] =
39 "Enable Material Design settings"; 30 "Enable Material Design settings";
40 31
41 const char kEnableMaterialDesignSettingsDescription[] = 32 const char kEnableMaterialDesignSettingsDescription[] =
42 "If enabled, the chrome://settings/ URL loads the Material Design " 33 "If enabled, the chrome://settings/ URL loads the Material Design "
43 "settings page."; 34 "settings page.";
44 35
45 // Material Design version of chrome://extensions 36 // Material Design version of chrome://extensions
(...skipping 2638 matching lines...) Expand 10 before | Expand all | Expand 10 after
2684 "remoting of encrypted content. When disabled, only non-encrypted " 2675 "remoting of encrypted content. When disabled, only non-encrypted "
2685 "content can be remoted."; 2676 "content can be remoted.";
2686 2677
2687 // Chrome OS component updates chrome://flags strings 2678 // Chrome OS component updates chrome://flags strings
2688 2679
2689 const char kCrosCompUpdatesName[] = "Chrome OS Flash Component Updates"; 2680 const char kCrosCompUpdatesName[] = "Chrome OS Flash Component Updates";
2690 2681
2691 const char kCrosCompUpdatesDescription[] = 2682 const char kCrosCompUpdatesDescription[] =
2692 "Enable Flash component updates for Chrome OS."; 2683 "Enable Flash component updates for Chrome OS.";
2693 2684
2694 // Native Android History chrome://flags strings
2695
2696 #if defined(OS_ANDROID)
2697
2698 const char kNativeAndroidHistoryManager[] = "Native Android History";
2699
2700 const char kNativeAndroidHistoryManagerDescription[] =
2701 "Show the native Android UI for browsing history.";
2702
2703 #endif // defined(OS_ANDROID)
2704
2705 // Play Services LSD permission prompt chrome://flags strings 2685 // Play Services LSD permission prompt chrome://flags strings
2706 2686
2707 #if defined(OS_ANDROID) 2687 #if defined(OS_ANDROID)
2708 2688
2709 const char kLsdPermissionPromptName[] = 2689 const char kLsdPermissionPromptName[] =
2710 "Location Settings Dialog Permission Prompt"; 2690 "Location Settings Dialog Permission Prompt";
2711 2691
2712 const char kLsdPermissionPromptDescription[] = 2692 const char kLsdPermissionPromptDescription[] =
2713 "Whether to use the Google Play Services Location Settings Dialog " 2693 "Whether to use the Google Play Services Location Settings Dialog "
2714 "permission dialog."; 2694 "permission dialog.";
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
3043 3023
3044 const char kAutoplayPolicyNoUserGestureRequired[] = 3024 const char kAutoplayPolicyNoUserGestureRequired[] =
3045 "No user gesture is required."; 3025 "No user gesture is required.";
3046 3026
3047 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required."; 3027 const char kAutoplayPolicyUserGestureRequired[] = "User gesture is required.";
3048 3028
3049 const char kAutoplayPolicyCrossOriginUserGestureRequired[] = 3029 const char kAutoplayPolicyCrossOriginUserGestureRequired[] =
3050 "User gesture is required for cross-origin iframes."; 3030 "User gesture is required for cross-origin iframes.";
3051 3031
3052 } // namespace flag_descriptions 3032 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698