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

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

Issue 2716333002: Implement important sites dialog for desktop. (Closed)
Patch Set: add using declaration Created 3 years, 8 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 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 const char kPassiveEventListenerDefaultName[] = 667 const char kPassiveEventListenerDefaultName[] =
668 "Passive Event Listener Override"; 668 "Passive Event Listener Override";
669 669
670 const char kPassiveEventListenerDefaultDescription[] = 670 const char kPassiveEventListenerDefaultDescription[] =
671 "Forces touchstart, touchmove, mousewheel and wheel event listeners " 671 "Forces touchstart, touchmove, mousewheel and wheel event listeners "
672 "(which haven't requested otherwise) to be treated as passive. This " 672 "(which haven't requested otherwise) to be treated as passive. This "
673 "will break touch/wheel behavior on some websites but is useful for " 673 "will break touch/wheel behavior on some websites but is useful for "
674 "demonstrating the potential performance benefits of adopting passive " 674 "demonstrating the potential performance benefits of adopting passive "
675 "event listeners."; 675 "event listeners.";
676 676
677 #if defined(OS_ANDROID)
678
679 const char kImportantSitesInCbdName[] = 677 const char kImportantSitesInCbdName[] =
680 "Important sites options in clear browsing data dialog"; 678 "Important sites options in clear browsing data dialog";
681 679
682 const char kImportantSitesInCbdDescription[] = 680 const char kImportantSitesInCbdDescription[] =
683 "Include the option to whitelist important sites in the clear browsing " 681 "Include the option to whitelist important sites in the clear browsing "
684 "data dialog."; 682 "data dialog.";
685 683
686 #endif // defined(OS_ANDROID)
687
688 #if defined(USE_ASH) 684 #if defined(USE_ASH)
689 685
690 const char kAshShelfColor[] = "Shelf Color in Chrome OS system UI"; 686 const char kAshShelfColor[] = "Shelf Color in Chrome OS system UI";
691 687
692 const char kAshShelfColorDescription[] = 688 const char kAshShelfColorDescription[] =
693 "Specify the Shelf Color scheme in Chrome OS system UI"; 689 "Specify the Shelf Color scheme in Chrome OS system UI";
694 690
695 const char kAshShelfColorLightVibrant[] = "Light & Vibrant"; 691 const char kAshShelfColorLightVibrant[] = "Light & Vibrant";
696 692
697 const char kAshShelfColorNormalVibrant[] = "Normal & Vibrant"; 693 const char kAshShelfColorNormalVibrant[] = "Normal & Vibrant";
(...skipping 2209 matching lines...) Expand 10 before | Expand all | Expand 10 after
2907 const char kEnableEhvInputName[] = 2903 const char kEnableEhvInputName[] =
2908 "Emoji, handwriting and voice input on opt-in IME menu"; 2904 "Emoji, handwriting and voice input on opt-in IME menu";
2909 2905
2910 const char kEnableEhvInputDescription[] = 2906 const char kEnableEhvInputDescription[] =
2911 "Enable access to emoji, handwriting and voice input form opt-in IME " 2907 "Enable access to emoji, handwriting and voice input form opt-in IME "
2912 "menu."; 2908 "menu.";
2913 2909
2914 #endif // #if defined(OS_CHROMEOS) 2910 #endif // #if defined(OS_CHROMEOS)
2915 2911
2916 } // namespace flag_descriptions 2912 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698