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 2756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2767 | 2767 |
2768 const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions"; | 2768 const char kOmniboxEntitySuggestionsName[] = "Omnibox entity suggestions"; |
2769 | 2769 |
2770 const char kOmniboxEntitySuggestionsDescription[] = | 2770 const char kOmniboxEntitySuggestionsDescription[] = |
2771 "Enable receiving entity suggestions in Omnibox."; | 2771 "Enable receiving entity suggestions in Omnibox."; |
2772 | 2772 |
2773 const char kPauseBackgroundTabsName[] = "Pause background tabs"; | 2773 const char kPauseBackgroundTabsName[] = "Pause background tabs"; |
2774 const char kPauseBackgroundTabsDescription[] = | 2774 const char kPauseBackgroundTabsDescription[] = |
2775 "Pause timers in background tabs after 5 minutes on desktop."; | 2775 "Pause timers in background tabs after 5 minutes on desktop."; |
2776 | 2776 |
2777 const char kGlobalErrorMenuIconName[] = "Global Error Menu Icon"; | |
2778 const char kGlobalErrorMenuIconDescription[] = | |
2779 "Changes the global error icon in the wrench menu."; | |
msw
2017/04/13 17:23:12
nit: s/wrench/app/?
spqchan
2017/04/13 22:52:42
Done.
| |
2780 const char kGlobalErrorMenuIconOldBehavior[] = "Old Behavior"; | |
2781 const char kGlobalErrorMenuIconPersistentOpenedState[] = | |
2782 "Persistent Opened State"; | |
2783 const char kGlobalErrorMenuIconPersistentClosedState[] = | |
2784 "Persistent Closed State"; | |
2785 | |
2777 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || | 2786 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || |
2778 // defined(OS_WIN) | 2787 // defined(OS_WIN) |
2779 | 2788 |
2780 #if defined(OS_CHROMEOS) | 2789 #if defined(OS_CHROMEOS) |
2781 | 2790 |
2782 const char kEnableChromevoxArcSupportName[] = "ChromeVox ARC support"; | 2791 const char kEnableChromevoxArcSupportName[] = "ChromeVox ARC support"; |
2783 | 2792 |
2784 const char kEnableChromevoxArcSupportDescription[] = | 2793 const char kEnableChromevoxArcSupportDescription[] = |
2785 "Enable ChromeVox screen reader features in ARC"; | 2794 "Enable ChromeVox screen reader features in ARC"; |
2786 | 2795 |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2977 const char kEnableCopylessPasteDescription[] = | 2986 const char kEnableCopylessPasteDescription[] = |
2978 "Provide suggestions for text input, based on your recent context. For " | 2987 "Provide suggestions for text input, based on your recent context. For " |
2979 "example, if you looked at a restaurant website and switched to the Maps " | 2988 "example, if you looked at a restaurant website and switched to the Maps " |
2980 "app, the keyboard would offer the name of that restaurant as a suggestion " | 2989 "app, the keyboard would offer the name of that restaurant as a suggestion " |
2981 "to enter into the search bar. The data is indexed locally, and never sent " | 2990 "to enter into the search bar. The data is indexed locally, and never sent " |
2982 "to the server. It's disabled in incognito mode."; | 2991 "to the server. It's disabled in incognito mode."; |
2983 | 2992 |
2984 #endif // defined(OS_ANDROID) | 2993 #endif // defined(OS_ANDROID) |
2985 | 2994 |
2986 } // namespace flag_descriptions | 2995 } // namespace flag_descriptions |
OLD | NEW |