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 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
672 const char kPassiveEventListenerDefaultName[] = | 672 const char kPassiveEventListenerDefaultName[] = |
673 "Passive Event Listener Override"; | 673 "Passive Event Listener Override"; |
674 | 674 |
675 const char kPassiveEventListenerDefaultDescription[] = | 675 const char kPassiveEventListenerDefaultDescription[] = |
676 "Forces touchstart, touchmove, mousewheel and wheel event listeners " | 676 "Forces touchstart, touchmove, mousewheel and wheel event listeners " |
677 "(which haven't requested otherwise) to be treated as passive. This " | 677 "(which haven't requested otherwise) to be treated as passive. This " |
678 "will break touch/wheel behavior on some websites but is useful for " | 678 "will break touch/wheel behavior on some websites but is useful for " |
679 "demonstrating the potential performance benefits of adopting passive " | 679 "demonstrating the potential performance benefits of adopting passive " |
680 "event listeners."; | 680 "event listeners."; |
681 | 681 |
682 #if defined(OS_ANDROID) | |
683 | |
684 const char kImportantSitesInCbdName[] = | 682 const char kImportantSitesInCbdName[] = |
685 "Important sites options in clear browsing data dialog"; | 683 "Important sites options in clear browsing data dialog"; |
686 | 684 |
687 const char kImportantSitesInCbdDescription[] = | 685 const char kImportantSitesInCbdDescription[] = |
688 "Include the option to whitelist important sites in the clear browsing " | 686 "Include the option to whitelist important sites in the clear browsing " |
689 "data dialog."; | 687 "data dialog."; |
690 | 688 |
691 #endif // defined(OS_ANDROID) | |
692 | |
693 #if defined(USE_ASH) | 689 #if defined(USE_ASH) |
694 | 690 |
695 const char kAshShelfColor[] = "Shelf color in Chrome OS system UI"; | 691 const char kAshShelfColor[] = "Shelf color in Chrome OS system UI"; |
696 | 692 |
697 const char kAshShelfColorDescription[] = | 693 const char kAshShelfColorDescription[] = |
698 "Enables/disables the shelf color to be a derived from the wallpaper. The " | 694 "Enables/disables the shelf color to be a derived from the wallpaper. The " |
699 "--ash-shelf-color-scheme flag defines how that color is derived."; | 695 "--ash-shelf-color-scheme flag defines how that color is derived."; |
700 | 696 |
701 const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI"; | 697 const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI"; |
702 | 698 |
(...skipping 2259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2962 const char kEnableCopylessPasteDescription[] = | 2958 const char kEnableCopylessPasteDescription[] = |
2963 "Provide suggestions for text input, based on your recent context. For " | 2959 "Provide suggestions for text input, based on your recent context. For " |
2964 "example, if you looked at a restaurant website and switched to the Maps " | 2960 "example, if you looked at a restaurant website and switched to the Maps " |
2965 "app, the keyboard would offer the name of that restaurant as a suggestion " | 2961 "app, the keyboard would offer the name of that restaurant as a suggestion " |
2966 "to enter into the search bar. The data is indexed locally, and never sent " | 2962 "to enter into the search bar. The data is indexed locally, and never sent " |
2967 "to the server. It's disabled in incognito mode."; | 2963 "to the server. It's disabled in incognito mode."; |
2968 | 2964 |
2969 #endif // defined(OS_ANDROID) | 2965 #endif // defined(OS_ANDROID) |
2970 | 2966 |
2971 } // namespace flag_descriptions | 2967 } // namespace flag_descriptions |
OLD | NEW |