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

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

Issue 2716333002: Implement important sites dialog for desktop. (Closed)
Patch Set: change ImportantSite type declaration 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 666 matching lines...) Expand 10 before | Expand all | Expand 10 after
677 const char kPassiveEventListenerDefaultName[] = 677 const char kPassiveEventListenerDefaultName[] =
678 "Passive Event Listener Override"; 678 "Passive Event Listener Override";
679 679
680 const char kPassiveEventListenerDefaultDescription[] = 680 const char kPassiveEventListenerDefaultDescription[] =
681 "Forces touchstart, touchmove, mousewheel and wheel event listeners " 681 "Forces touchstart, touchmove, mousewheel and wheel event listeners "
682 "(which haven't requested otherwise) to be treated as passive. This " 682 "(which haven't requested otherwise) to be treated as passive. This "
683 "will break touch/wheel behavior on some websites but is useful for " 683 "will break touch/wheel behavior on some websites but is useful for "
684 "demonstrating the potential performance benefits of adopting passive " 684 "demonstrating the potential performance benefits of adopting passive "
685 "event listeners."; 685 "event listeners.";
686 686
687 #if defined(OS_ANDROID)
688
689 const char kImportantSitesInCbdName[] = 687 const char kImportantSitesInCbdName[] =
690 "Important sites options in clear browsing data dialog"; 688 "Important sites options in clear browsing data dialog";
691 689
692 const char kImportantSitesInCbdDescription[] = 690 const char kImportantSitesInCbdDescription[] =
693 "Include the option to whitelist important sites in the clear browsing " 691 "Include the option to whitelist important sites in the clear browsing "
694 "data dialog."; 692 "data dialog.";
695 693
696 #endif // defined(OS_ANDROID)
697
698 #if defined(USE_ASH) 694 #if defined(USE_ASH)
699 695
700 const char kAshShelfColor[] = "Shelf color in Chrome OS system UI"; 696 const char kAshShelfColor[] = "Shelf color in Chrome OS system UI";
701 697
702 const char kAshShelfColorDescription[] = 698 const char kAshShelfColorDescription[] =
703 "Enables/disables the shelf color to be a derived from the wallpaper. The " 699 "Enables/disables the shelf color to be a derived from the wallpaper. The "
704 "--ash-shelf-color-scheme flag defines how that color is derived."; 700 "--ash-shelf-color-scheme flag defines how that color is derived.";
705 701
706 const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI"; 702 const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI";
707 703
(...skipping 2319 matching lines...) Expand 10 before | Expand all | Expand 10 after
3027 #endif // defined(OS_ANDROID) 3023 #endif // defined(OS_ANDROID)
3028 3024
3029 const char kEnableIdleTimeSpellCheckingName[] = 3025 const char kEnableIdleTimeSpellCheckingName[] =
3030 "Enable idle time spell checker"; 3026 "Enable idle time spell checker";
3031 3027
3032 const char kEnableIdleTimeSpellCheckingDescription[] = 3028 const char kEnableIdleTimeSpellCheckingDescription[] =
3033 "Make spell-checking code run only when the browser is idle, so that input " 3029 "Make spell-checking code run only when the browser is idle, so that input "
3034 "latency is reduced, especially when editing long articles, emails, etc."; 3030 "latency is reduced, especially when editing long articles, emails, etc.";
3035 3031
3036 } // namespace flag_descriptions 3032 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698