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

Side by Side Diff: content/public/common/content_switches.cc

Issue 643433003: Remove deferred filters command-line flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 // Has no effect unless GPU rasterization is enabled. 283 // Has no effect unless GPU rasterization is enabled.
284 const char kEnableAcceleratedJpegDecoding[] = 284 const char kEnableAcceleratedJpegDecoding[] =
285 "enable-accelerated-jpeg-decoding"; 285 "enable-accelerated-jpeg-decoding";
286 286
287 // Enable bleeding-edge code to make Chrome draw content faster. The changes 287 // Enable bleeding-edge code to make Chrome draw content faster. The changes
288 // behind this path are very likely to break lots of content. 288 // behind this path are very likely to break lots of content.
289 // ** DO NOT use this flag unless you know what you are doing. ** 289 // ** DO NOT use this flag unless you know what you are doing. **
290 const char kEnableBleedingEdgeRenderingFastPaths[] = 290 const char kEnableBleedingEdgeRenderingFastPaths[] =
291 "enable-bleeding-edge-rendering-fast-paths"; 291 "enable-bleeding-edge-rendering-fast-paths";
292 292
293 // Disable deferred image filters.
294 const char kDisableDeferredFilters[] = "disable-deferred-filters";
295
296 // Enables LCD text. 293 // Enables LCD text.
297 const char kEnableLCDText[] = "enable-lcd-text"; 294 const char kEnableLCDText[] = "enable-lcd-text";
298 295
299 // Enables using signed distance fields when rendering text. 296 // Enables using signed distance fields when rendering text.
300 // Only valid if GPU rasterization is enabled as well. 297 // Only valid if GPU rasterization is enabled as well.
301 const char kEnableDistanceFieldText[] = "enable-distance-field-text"; 298 const char kEnableDistanceFieldText[] = "enable-distance-field-text";
302 299
303 // Enables experimental feature that maps multiple RenderLayers to 300 // Enables experimental feature that maps multiple RenderLayers to
304 // one composited layer to avoid pathological layer counts. 301 // one composited layer to avoid pathological layer counts.
305 const char kEnableLayerSquashing[] = 302 const char kEnableLayerSquashing[] =
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
963 #endif 960 #endif
964 961
965 #if defined(ENABLE_PLUGINS) 962 #if defined(ENABLE_PLUGINS)
966 // Enables the plugin power saver feature. 963 // Enables the plugin power saver feature.
967 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; 964 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver";
968 #endif 965 #endif
969 966
970 // Don't dump stuff here, follow the same order as the header. 967 // Don't dump stuff here, follow the same order as the header.
971 968
972 } // namespace switches 969 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698