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 2741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2752 "Make size of accessibility large cursor adjustable."; | 2752 "Make size of accessibility large cursor adjustable."; |
2753 | 2753 |
2754 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \ | 2754 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \ |
2755 defined(OS_WIN) | 2755 defined(OS_WIN) |
2756 | 2756 |
2757 const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions"; | 2757 const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions"; |
2758 | 2758 |
2759 const char kOmniboxEntitySuggestionsDescription[] = | 2759 const char kOmniboxEntitySuggestionsDescription[] = |
2760 "Enable receiving entity suggestions in Omnibox."; | 2760 "Enable receiving entity suggestions in Omnibox."; |
2761 | 2761 |
| 2762 const char kPauseBackgroundTabsName[] = "Pause background tabs"; |
| 2763 const char kPauseBackgroundTabsDescription[] = |
| 2764 "Pause timers in background tabs after 5 minutes on desktop."; |
| 2765 |
2762 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || | 2766 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || |
2763 // defined(OS_WIN) | 2767 // defined(OS_WIN) |
2764 | 2768 |
2765 #if defined(OS_CHROMEOS) | 2769 #if defined(OS_CHROMEOS) |
2766 | 2770 |
2767 const char kEnableChromevoxArcSupportName[] = "ChromeVox ARC support"; | 2771 const char kEnableChromevoxArcSupportName[] = "ChromeVox ARC support"; |
2768 | 2772 |
2769 const char kEnableChromevoxArcSupportDescription[] = | 2773 const char kEnableChromevoxArcSupportDescription[] = |
2770 "Enable ChromeVox screen reader features in ARC"; | 2774 "Enable ChromeVox screen reader features in ARC"; |
2771 | 2775 |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2967 const char kEnableCopylessPasteDescription[] = | 2971 const char kEnableCopylessPasteDescription[] = |
2968 "Provide suggestions for text input, based on your recent context. For " | 2972 "Provide suggestions for text input, based on your recent context. For " |
2969 "example, if you looked at a restaurant website and switched to the Maps " | 2973 "example, if you looked at a restaurant website and switched to the Maps " |
2970 "app, the keyboard would offer the name of that restaurant as a suggestion " | 2974 "app, the keyboard would offer the name of that restaurant as a suggestion " |
2971 "to enter into the search bar. The data is indexed locally, and never sent " | 2975 "to enter into the search bar. The data is indexed locally, and never sent " |
2972 "to the server. It's disabled in incognito mode."; | 2976 "to the server. It's disabled in incognito mode."; |
2973 | 2977 |
2974 #endif // defined(OS_ANDROID) | 2978 #endif // defined(OS_ANDROID) |
2975 | 2979 |
2976 } // namespace flag_descriptions | 2980 } // namespace flag_descriptions |
OLD | NEW |