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

Side by Side Diff: chrome/common/chrome_features.h

Issue 2524143003: Print Preview: Add option to rasterize PDFs and add JPEG compression. (Closed)
Patch Set: Clean up JS Created 4 years 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 // This file defines all the public base::FeatureList features for the chrome 5 // This file defines all the public base::FeatureList features for the chrome
6 // module. 6 // module.
7 7
8 #ifndef CHROME_COMMON_CHROME_FEATURES_H_ 8 #ifndef CHROME_COMMON_CHROME_FEATURES_H_
9 #define CHROME_COMMON_CHROME_FEATURES_H_ 9 #define CHROME_COMMON_CHROME_FEATURES_H_
10 10
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 93
94 extern const base::Feature kOverrideYouTubeFlashEmbed; 94 extern const base::Feature kOverrideYouTubeFlashEmbed;
95 95
96 extern const base::Feature kPermissionsBlacklist; 96 extern const base::Feature kPermissionsBlacklist;
97 97
98 #if BUILDFLAG(ENABLE_PLUGINS) 98 #if BUILDFLAG(ENABLE_PLUGINS)
99 extern const base::Feature kPreferHtmlOverPlugins; 99 extern const base::Feature kPreferHtmlOverPlugins;
100 #endif 100 #endif
101 101
102 #if BUILDFLAG(ENABLE_PRINT_PREVIEW) 102 #if BUILDFLAG(ENABLE_PRINT_PREVIEW)
103 extern const base::Feature kPrintPdfAsImage;
104
103 extern const base::Feature kPrintScaling; 105 extern const base::Feature kPrintScaling;
104 #endif 106 #endif
105 107
106 extern const base::Feature kPushMessagingBackgroundMode; 108 extern const base::Feature kPushMessagingBackgroundMode;
107 109
108 #if defined(OS_CHROMEOS) 110 #if defined(OS_CHROMEOS)
109 extern const base::Feature kRuntimeMemoryLeakDetector; 111 extern const base::Feature kRuntimeMemoryLeakDetector;
110 #endif // defined(OS_CHROMEOS) 112 #endif // defined(OS_CHROMEOS)
111 113
112 #if BUILDFLAG(ENABLE_PLUGINS) 114 #if BUILDFLAG(ENABLE_PLUGINS)
(...skipping 23 matching lines...) Expand all
136 138
137 extern const base::Feature kCrosCompUpdates; 139 extern const base::Feature kCrosCompUpdates;
138 #endif // defined(OS_CHROMEOS) 140 #endif // defined(OS_CHROMEOS)
139 141
140 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 142 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
141 // alphabetical order, or in one of the ifdefs (also in order in each section). 143 // alphabetical order, or in one of the ifdefs (also in order in each section).
142 144
143 } // namespace features 145 } // namespace features
144 146
145 #endif // CHROME_COMMON_CHROME_FEATURES_H_ 147 #endif // CHROME_COMMON_CHROME_FEATURES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698