| 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 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 665 const char kPassiveEventListenerDefaultName[] = | 665 const char kPassiveEventListenerDefaultName[] = |
| 666 "Passive Event Listener Override"; | 666 "Passive Event Listener Override"; |
| 667 | 667 |
| 668 const char kPassiveEventListenerDefaultDescription[] = | 668 const char kPassiveEventListenerDefaultDescription[] = |
| 669 "Forces touchstart, touchmove, mousewheel and wheel event listeners " | 669 "Forces touchstart, touchmove, mousewheel and wheel event listeners " |
| 670 "(which haven't requested otherwise) to be treated as passive. This " | 670 "(which haven't requested otherwise) to be treated as passive. This " |
| 671 "will break touch/wheel behavior on some websites but is useful for " | 671 "will break touch/wheel behavior on some websites but is useful for " |
| 672 "demonstrating the potential performance benefits of adopting passive " | 672 "demonstrating the potential performance benefits of adopting passive " |
| 673 "event listeners."; | 673 "event listeners."; |
| 674 | 674 |
| 675 #if defined(OS_ANDROID) | |
| 676 | |
| 677 const char kImportantSitesInCbdName[] = | 675 const char kImportantSitesInCbdName[] = |
| 678 "Important sites options in clear browsing data dialog"; | 676 "Important sites options in clear browsing data dialog"; |
| 679 | 677 |
| 680 const char kImportantSitesInCbdDescription[] = | 678 const char kImportantSitesInCbdDescription[] = |
| 681 "Include the option to whitelist important sites in the clear browsing " | 679 "Include the option to whitelist important sites in the clear browsing " |
| 682 "data dialog."; | 680 "data dialog."; |
| 683 | 681 |
| 684 #endif // defined(OS_ANDROID) | |
| 685 | |
| 686 #if defined(USE_ASH) | 682 #if defined(USE_ASH) |
| 687 | 683 |
| 688 const char kAshShelfColor[] = "Shelf color in Chrome OS system UI"; | 684 const char kAshShelfColor[] = "Shelf color in Chrome OS system UI"; |
| 689 | 685 |
| 690 const char kAshShelfColorDescription[] = | 686 const char kAshShelfColorDescription[] = |
| 691 "Enables/disables the shelf color to be a derived from the wallpaper. The " | 687 "Enables/disables the shelf color to be a derived from the wallpaper. The " |
| 692 "--ash-shelf-color-scheme flag defines how that color is derived."; | 688 "--ash-shelf-color-scheme flag defines how that color is derived."; |
| 693 | 689 |
| 694 const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI"; | 690 const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI"; |
| 695 | 691 |
| (...skipping 2435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3131 "hard-reload."; | 3127 "hard-reload."; |
| 3132 | 3128 |
| 3133 const char kCaptureThumbnailOnLoadFinishedName[] = | 3129 const char kCaptureThumbnailOnLoadFinishedName[] = |
| 3134 "Capture page thumbnail on load finished"; | 3130 "Capture page thumbnail on load finished"; |
| 3135 | 3131 |
| 3136 const char kCaptureThumbnailOnLoadFinishedDescription[] = | 3132 const char kCaptureThumbnailOnLoadFinishedDescription[] = |
| 3137 "Capture a page thumbnail (for use on the New Tab page) when the page load " | 3133 "Capture a page thumbnail (for use on the New Tab page) when the page load " |
| 3138 "finishes, in addition to other times a thumbnail may be captured."; | 3134 "finishes, in addition to other times a thumbnail may be captured."; |
| 3139 | 3135 |
| 3140 } // namespace flag_descriptions | 3136 } // namespace flag_descriptions |
| OLD | NEW |