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 #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 2669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2715 "optimization that forwards the content bitstream directly to the " | 2706 "optimization that forwards the content bitstream directly to the " |
2716 "remote device when a video is fullscreened."; | 2707 "remote device when a video is fullscreened."; |
2717 | 2708 |
2718 // Chrome OS component updates chrome://flags strings | 2709 // Chrome OS component updates chrome://flags strings |
2719 | 2710 |
2720 const char kCrosCompUpdatesName[] = "Chrome OS Flash Component Updates"; | 2711 const char kCrosCompUpdatesName[] = "Chrome OS Flash Component Updates"; |
2721 | 2712 |
2722 const char kCrosCompUpdatesDescription[] = | 2713 const char kCrosCompUpdatesDescription[] = |
2723 "Enable Flash component updates for Chrome OS."; | 2714 "Enable Flash component updates for Chrome OS."; |
2724 | 2715 |
2725 // Native Android History chrome://flags strings | |
2726 | |
2727 #if defined(OS_ANDROID) | |
2728 | |
2729 const char kNativeAndroidHistoryManager[] = "Native Android History"; | |
2730 | |
2731 const char kNativeAndroidHistoryManagerDescription[] = | |
2732 "Show the native Android UI for browsing history."; | |
2733 | |
2734 #endif // defined(OS_ANDROID) | |
2735 | |
2736 // Play Services LSD permission prompt chrome://flags strings | 2716 // Play Services LSD permission prompt chrome://flags strings |
2737 | 2717 |
2738 #if defined(OS_ANDROID) | 2718 #if defined(OS_ANDROID) |
2739 | 2719 |
2740 const char kLsdPermissionPromptName[] = | 2720 const char kLsdPermissionPromptName[] = |
2741 "Location Settings Dialog Permission Prompt"; | 2721 "Location Settings Dialog Permission Prompt"; |
2742 | 2722 |
2743 const char kLsdPermissionPromptDescription[] = | 2723 const char kLsdPermissionPromptDescription[] = |
2744 "Whether to use the Google Play Services Location Settings Dialog " | 2724 "Whether to use the Google Play Services Location Settings Dialog " |
2745 "permission dialog."; | 2725 "permission dialog."; |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3104 | 3084 |
3105 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; | 3085 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; |
3106 | 3086 |
3107 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; | 3087 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; |
3108 | 3088 |
3109 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; | 3089 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; |
3110 | 3090 |
3111 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; | 3091 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; |
3112 | 3092 |
3113 } // namespace flag_descriptions | 3093 } // namespace flag_descriptions |
OLD | NEW |