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 2703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2714 "Make size of accessibility large cursor adjustable."; | 2714 "Make size of accessibility large cursor adjustable."; |
2715 | 2715 |
2716 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \ | 2716 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \ |
2717 defined(OS_WIN) | 2717 defined(OS_WIN) |
2718 | 2718 |
2719 const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions"; | 2719 const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions"; |
2720 | 2720 |
2721 const char kOmniboxEntitySuggestionsDescription[] = | 2721 const char kOmniboxEntitySuggestionsDescription[] = |
2722 "Enable receiving entity suggestions in Omnibox."; | 2722 "Enable receiving entity suggestions in Omnibox."; |
2723 | 2723 |
2724 const char kPauseBackgroundTabsName[] = "Pause background tabs"; | |
2725 const char kPauseBackgroundTabsDescription[] = | |
2726 "Pause timers in background tabs after 5 minutes like on mobile."; | |
panicker
2017/04/07 19:44:06
bit confusing, maybe mention desktop explicitly in
ojan
2017/04/08 02:28:53
Done. FWIW, it won't show up in about:flags on mob
| |
2727 | |
2724 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || | 2728 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || |
2725 // defined(OS_WIN) | 2729 // defined(OS_WIN) |
2726 | 2730 |
2727 #if defined(OS_CHROMEOS) | 2731 #if defined(OS_CHROMEOS) |
2728 | 2732 |
2729 const char kEnableChromevoxArcSupportName[] = "ChromeVox ARC support"; | 2733 const char kEnableChromevoxArcSupportName[] = "ChromeVox ARC support"; |
2730 | 2734 |
2731 const char kEnableChromevoxArcSupportDescription[] = | 2735 const char kEnableChromevoxArcSupportDescription[] = |
2732 "Enable ChromeVox screen reader features in ARC"; | 2736 "Enable ChromeVox screen reader features in ARC"; |
2733 | 2737 |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2909 const char kEnableEhvInputName[] = | 2913 const char kEnableEhvInputName[] = |
2910 "Emoji, handwriting and voice input on opt-in IME menu"; | 2914 "Emoji, handwriting and voice input on opt-in IME menu"; |
2911 | 2915 |
2912 const char kEnableEhvInputDescription[] = | 2916 const char kEnableEhvInputDescription[] = |
2913 "Enable access to emoji, handwriting and voice input form opt-in IME " | 2917 "Enable access to emoji, handwriting and voice input form opt-in IME " |
2914 "menu."; | 2918 "menu."; |
2915 | 2919 |
2916 #endif // #if defined(OS_CHROMEOS) | 2920 #endif // #if defined(OS_CHROMEOS) |
2917 | 2921 |
2918 } // namespace flag_descriptions | 2922 } // namespace flag_descriptions |
OLD | NEW |