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 |
(...skipping 2722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2733 | 2733 |
2734 const char kDelayNavigationName[] = "Delay navigations"; | 2734 const char kDelayNavigationName[] = "Delay navigations"; |
2735 | 2735 |
2736 const char kDelayNavigationDescription[] = | 2736 const char kDelayNavigationDescription[] = |
2737 "Add a fixed delay to main frame navigations."; | 2737 "Add a fixed delay to main frame navigations."; |
2738 | 2738 |
2739 const char kDebugShortcutsDescription[] = | 2739 const char kDebugShortcutsDescription[] = |
2740 "Enables additional keyboard shortcuts that are useful for debugging " | 2740 "Enables additional keyboard shortcuts that are useful for debugging " |
2741 "Ash."; | 2741 "Ash."; |
2742 | 2742 |
| 2743 #if defined(OS_ANDROID) |
| 2744 |
| 2745 const char kEnableCustomContextMenuName[] = "Enable custom context menu"; |
| 2746 |
| 2747 const char kEnableCustomContextMenuDescription[] = |
| 2748 "Enables a new context menu when a link, image, or video is pressed within " |
| 2749 "Chrome."; |
| 2750 |
| 2751 #endif // defined(OS_ANDROID) |
| 2752 |
2743 #if defined(OS_CHROMEOS) | 2753 #if defined(OS_CHROMEOS) |
2744 | 2754 |
2745 // File Manager | 2755 // File Manager |
2746 | 2756 |
2747 const char kVideoPlayerChromecastSupportName[] = | 2757 const char kVideoPlayerChromecastSupportName[] = |
2748 "Experimental Chromecast support for Video Player"; | 2758 "Experimental Chromecast support for Video Player"; |
2749 | 2759 |
2750 const char kVideoPlayerChromecastSupportDescription[] = | 2760 const char kVideoPlayerChromecastSupportDescription[] = |
2751 "This option enables experimental Chromecast support for Video Player " | 2761 "This option enables experimental Chromecast support for Video Player " |
2752 "app on ChromeOS."; | 2762 "app on ChromeOS."; |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2883 const char kEnableEhvInputName[] = | 2893 const char kEnableEhvInputName[] = |
2884 "Emoji, handwriting and voice input on opt-in IME menu"; | 2894 "Emoji, handwriting and voice input on opt-in IME menu"; |
2885 | 2895 |
2886 const char kEnableEhvInputDescription[] = | 2896 const char kEnableEhvInputDescription[] = |
2887 "Enable access to emoji, handwriting and voice input form opt-in IME " | 2897 "Enable access to emoji, handwriting and voice input form opt-in IME " |
2888 "menu."; | 2898 "menu."; |
2889 | 2899 |
2890 #endif // #if defined(OS_CHROMEOS) | 2900 #endif // #if defined(OS_CHROMEOS) |
2891 | 2901 |
2892 } // namespace flag_descriptions | 2902 } // namespace flag_descriptions |
OLD | NEW |