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

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

Issue 2716333002: Implement important sites dialog for desktop. (Closed)
Patch Set: fix comments 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 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 const char kPassiveEventListenerDefaultName[] = 668 const char kPassiveEventListenerDefaultName[] =
669 "Passive Event Listener Override"; 669 "Passive Event Listener Override";
670 670
671 const char kPassiveEventListenerDefaultDescription[] = 671 const char kPassiveEventListenerDefaultDescription[] =
672 "Forces touchstart, touchmove, mousewheel and wheel event listeners " 672 "Forces touchstart, touchmove, mousewheel and wheel event listeners "
673 "(which haven't requested otherwise) to be treated as passive. This " 673 "(which haven't requested otherwise) to be treated as passive. This "
674 "will break touch/wheel behavior on some websites but is useful for " 674 "will break touch/wheel behavior on some websites but is useful for "
675 "demonstrating the potential performance benefits of adopting passive " 675 "demonstrating the potential performance benefits of adopting passive "
676 "event listeners."; 676 "event listeners.";
677 677
678 #if defined(OS_ANDROID)
679
680 const char kImportantSitesInCbdName[] = 678 const char kImportantSitesInCbdName[] =
681 "Important sites options in clear browsing data dialog"; 679 "Important sites options in clear browsing data dialog";
682 680
683 const char kImportantSitesInCbdDescription[] = 681 const char kImportantSitesInCbdDescription[] =
684 "Include the option to whitelist important sites in the clear browsing " 682 "Include the option to whitelist important sites in the clear browsing "
685 "data dialog."; 683 "data dialog.";
686 684
687 #endif // defined(OS_ANDROID)
688
689 #if defined(USE_ASH) 685 #if defined(USE_ASH)
690 686
691 const char kAshShelfColor[] = "Shelf color in Chrome OS system UI"; 687 const char kAshShelfColor[] = "Shelf color in Chrome OS system UI";
692 688
693 const char kAshShelfColorDescription[] = 689 const char kAshShelfColorDescription[] =
694 "Enables/disables the shelf color to be a derived from the wallpaper. The " 690 "Enables/disables the shelf color to be a derived from the wallpaper. The "
695 "--ash-shelf-color-scheme flag defines how that color is derived."; 691 "--ash-shelf-color-scheme flag defines how that color is derived.";
696 692
697 const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI"; 693 const char kAshShelfColorScheme[] = "Shelf color scheme in Chrome OS System UI";
698 694
(...skipping 2385 matching lines...) Expand 10 before | Expand all | Expand 10 after
3084 3080
3085 const char kEnableHeapProfilingDescription[] = "Enables heap profiling."; 3081 const char kEnableHeapProfilingDescription[] = "Enables heap profiling.";
3086 3082
3087 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)"; 3083 const char kEnableHeapProfilingModePseudo[] = "Enabled (pseudo mode)";
3088 3084
3089 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)"; 3085 const char kEnableHeapProfilingModeNative[] = "Enabled (native mode)";
3090 3086
3091 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)"; 3087 const char kEnableHeapProfilingTaskProfiler[] = "Enabled (task mode)";
3092 3088
3093 } // namespace flag_descriptions 3089 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698