Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(802)

Side by Side Diff: chrome/browser/flag_descriptions.cc

Issue 2716333002: Implement important sites dialog for desktop. (Closed)
Patch Set: change element.$.someId to element.$$(#someId) Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 645 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 const char kPassiveEventListenerDefaultName[] = 656 const char kPassiveEventListenerDefaultName[] =
657 "Passive Event Listener Override"; 657 "Passive Event Listener Override";
658 658
659 const char kPassiveEventListenerDefaultDescription[] = 659 const char kPassiveEventListenerDefaultDescription[] =
660 "Forces touchstart, touchmove, mousewheel and wheel event listeners " 660 "Forces touchstart, touchmove, mousewheel and wheel event listeners "
661 "(which haven't requested otherwise) to be treated as passive. This " 661 "(which haven't requested otherwise) to be treated as passive. This "
662 "will break touch/wheel behavior on some websites but is useful for " 662 "will break touch/wheel behavior on some websites but is useful for "
663 "demonstrating the potential performance benefits of adopting passive " 663 "demonstrating the potential performance benefits of adopting passive "
664 "event listeners."; 664 "event listeners.";
665 665
666 #if defined(OS_ANDROID)
667
668 const char kImportantSitesInCbdName[] = 666 const char kImportantSitesInCbdName[] =
669 "Important sites options in clear browsing data dialog"; 667 "Important sites options in clear browsing data dialog";
670 668
671 const char kImportantSitesInCbdDescription[] = 669 const char kImportantSitesInCbdDescription[] =
672 "Include the option to whitelist important sites in the clear browsing " 670 "Include the option to whitelist important sites in the clear browsing "
673 "data dialog."; 671 "data dialog.";
674 672
675 #endif // defined(OS_ANDROID)
676
677 #if defined(USE_ASH) 673 #if defined(USE_ASH)
678 674
679 const char kAshShelfColorName[] = "Shelf color in Chrome OS system UI"; 675 const char kAshShelfColorName[] = "Shelf color in Chrome OS system UI";
680 676
681 const char kAshShelfColorDescription[] = 677 const char kAshShelfColorDescription[] =
682 "Enables/disables the shelf color to be a derived from the wallpaper. The " 678 "Enables/disables the shelf color to be a derived from the wallpaper. The "
683 "--ash-shelf-color-scheme flag defines how that color is derived."; 679 "--ash-shelf-color-scheme flag defines how that color is derived.";
684 680
685 const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI"; 681 const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI";
686 682
(...skipping 2465 matching lines...) Expand 10 before | Expand all | Expand 10 after
3152 3148
3153 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) 3149 #endif // !defined(OS_ANDROID) && !defined(OS_IOS)
3154 3150
3155 #if defined(OS_MACOSX) 3151 #if defined(OS_MACOSX)
3156 extern const char kMacRTLName[] = "Enable RTL"; 3152 extern const char kMacRTLName[] = "Enable RTL";
3157 extern const char kMacRTLDescription[] = 3153 extern const char kMacRTLDescription[] =
3158 "Mirrors the UI for RTL language users"; 3154 "Mirrors the UI for RTL language users";
3159 #endif 3155 #endif
3160 3156
3161 } // namespace flag_descriptions 3157 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698