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

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

Issue 2716333002: Implement important sites dialog for desktop. (Closed)
Patch Set: extract importantsites dialog to separate dialog 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 #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 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 extern const char kPassiveEventListenerForceAllTrue[]; 726 extern const char kPassiveEventListenerForceAllTrue[];
727 727
728 // Name for the flag to adjust the default behaviour for passive event 728 // Name for the flag to adjust the default behaviour for passive event
729 // listeners. 729 // listeners.
730 extern const char kPassiveEventListenerDefaultName[]; 730 extern const char kPassiveEventListenerDefaultName[];
731 731
732 // Description for the flag to adjust default behaviour for passive event 732 // Description for the flag to adjust default behaviour for passive event
733 // listeners. 733 // listeners.
734 extern const char kPassiveEventListenerDefaultDescription[]; 734 extern const char kPassiveEventListenerDefaultDescription[];
735 735
736 #if defined(OS_ANDROID)
737
738 // Title for the flag for including important sites whitelisting in the clear 736 // Title for the flag for including important sites whitelisting in the clear
739 // browsing dialog. 737 // browsing dialog.
740 extern const char kImportantSitesInCbdName[]; 738 extern const char kImportantSitesInCbdName[];
741 739
742 // Description for the flag for using important sites whitelisting in the clear 740 // Description for the flag for using important sites whitelisting in the clear
743 // browsing dialog. 741 // browsing dialog.
744 extern const char kImportantSitesInCbdDescription[]; 742 extern const char kImportantSitesInCbdDescription[];
745 743
746 #endif // defined(OS_ANDROID)
747
748 #if defined(USE_ASH) 744 #if defined(USE_ASH)
749 745
750 // Title of the flag which specifies the shelf coloring in Chrome OS system UI. 746 // Title of the flag which specifies the shelf coloring in Chrome OS system UI.
751 extern const char kAshShelfColor[]; 747 extern const char kAshShelfColor[];
752 748
753 // Description of the flag which specifies the shelf coloring in Chrome OS 749 // Description of the flag which specifies the shelf coloring in Chrome OS
754 // system UI. 750 // system UI.
755 extern const char kAshShelfColorDescription[]; 751 extern const char kAshShelfColorDescription[];
756 752
757 // Title of the flag which specifies the shelf coloring scheme in Chrome OS 753 // Title of the flag which specifies the shelf coloring scheme in Chrome OS
(...skipping 2456 matching lines...) Expand 10 before | Expand all | Expand 10 after
3214 extern const char kEnableCopylessPasteName[]; 3210 extern const char kEnableCopylessPasteName[];
3215 3211
3216 // Description of the flag that enables Copyless Paste. 3212 // Description of the flag that enables Copyless Paste.
3217 extern const char kEnableCopylessPasteDescription[]; 3213 extern const char kEnableCopylessPasteDescription[];
3218 3214
3219 #endif // defined(OS_ANDROID) 3215 #endif // defined(OS_ANDROID)
3220 3216
3221 } // namespace flag_descriptions 3217 } // namespace flag_descriptions
3222 3218
3223 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3219 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698