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

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

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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
7 7
8 // Includes needed for macros allowing conditional compilation of some strings. 8 // Includes needed for macros allowing conditional compilation of some strings.
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "build/buildflag.h" 10 #include "build/buildflag.h"
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after
738 extern const char kPassiveEventListenerForceAllTrue[]; 738 extern const char kPassiveEventListenerForceAllTrue[];
739 739
740 // Name for the flag to adjust the default behaviour for passive event 740 // Name for the flag to adjust the default behaviour for passive event
741 // listeners. 741 // listeners.
742 extern const char kPassiveEventListenerDefaultName[]; 742 extern const char kPassiveEventListenerDefaultName[];
743 743
744 // Description for the flag to adjust default behaviour for passive event 744 // Description for the flag to adjust default behaviour for passive event
745 // listeners. 745 // listeners.
746 extern const char kPassiveEventListenerDefaultDescription[]; 746 extern const char kPassiveEventListenerDefaultDescription[];
747 747
748 #if defined(OS_ANDROID)
749
750 // Title for the flag for including important sites whitelisting in the clear 748 // Title for the flag for including important sites whitelisting in the clear
751 // browsing dialog. 749 // browsing dialog.
752 extern const char kImportantSitesInCbdName[]; 750 extern const char kImportantSitesInCbdName[];
753 751
754 // Description for the flag for using important sites whitelisting in the clear 752 // Description for the flag for using important sites whitelisting in the clear
755 // browsing dialog. 753 // browsing dialog.
756 extern const char kImportantSitesInCbdDescription[]; 754 extern const char kImportantSitesInCbdDescription[];
757 755
758 #endif // defined(OS_ANDROID)
759
760 #if defined(USE_ASH) 756 #if defined(USE_ASH)
761 757
762 // Title of the flag which specifies the shelf coloring in Chrome OS system UI. 758 // Title of the flag which specifies the shelf coloring in Chrome OS system UI.
763 extern const char kAshShelfColor[]; 759 extern const char kAshShelfColor[];
764 760
765 // Description of the flag which specifies the shelf coloring in Chrome OS 761 // Description of the flag which specifies the shelf coloring in Chrome OS
766 // system UI. 762 // system UI.
767 extern const char kAshShelfColorDescription[]; 763 extern const char kAshShelfColorDescription[];
768 764
769 // Title of the flag which specifies the shelf coloring scheme in Chrome OS 765 // Title of the flag which specifies the shelf coloring scheme in Chrome OS
(...skipping 2526 matching lines...) Expand 10 before | Expand all | Expand 10 after
3296 3292
3297 // Name of the flag that enables Blink's idle time spell checker. 3293 // Name of the flag that enables Blink's idle time spell checker.
3298 extern const char kEnableIdleTimeSpellCheckingName[]; 3294 extern const char kEnableIdleTimeSpellCheckingName[];
3299 3295
3300 // Description of the flag that enables Blink's idle time spell checker. 3296 // Description of the flag that enables Blink's idle time spell checker.
3301 extern const char kEnableIdleTimeSpellCheckingDescription[]; 3297 extern const char kEnableIdleTimeSpellCheckingDescription[];
3302 3298
3303 } // namespace flag_descriptions 3299 } // namespace flag_descriptions
3304 3300
3305 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3301 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698