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

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

Issue 12547016: Enable browser plugin compositing by default, but add a flag to disable it. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 9 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') | no next file » | 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 namespace switches { 7 namespace switches {
8 8
9 // By default, file:// URIs cannot read other file:// URIs. This is an 9 // By default, file:// URIs cannot read other file:// URIs. This is an
10 // override for developers who need the old behavior for testing. 10 // override for developers who need the old behavior for testing.
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 // Enable hardware accelerated page painting. 253 // Enable hardware accelerated page painting.
254 const char kEnableAcceleratedPainting[] = "enable-accelerated-painting"; 254 const char kEnableAcceleratedPainting[] = "enable-accelerated-painting";
255 255
256 // Enable gpu-accelerated SVG/W3C filters. 256 // Enable gpu-accelerated SVG/W3C filters.
257 const char kEnableAcceleratedFilters[] = "enable-accelerated-filters"; 257 const char kEnableAcceleratedFilters[] = "enable-accelerated-filters";
258 258
259 // Turns on extremely verbose logging of accessibility events. 259 // Turns on extremely verbose logging of accessibility events.
260 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; 260 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging";
261 261
262 // Enables browser plugin compositing experiment. 262 // Enables browser plugin compositing experiment.
263 const char kEnableBrowserPluginCompositing[] = 263 const char kDisableBrowserPluginCompositing[] =
264 "enable-browser-plugin-compositing"; 264 "disable-browser-plugin-compositing";
265 265
266 // Enables browser plugin for all types of pages. 266 // Enables browser plugin for all types of pages.
267 const char kEnableBrowserPluginForAllViewTypes[] = 267 const char kEnableBrowserPluginForAllViewTypes[] =
268 "enable-browser-plugin-for-all-view-types"; 268 "enable-browser-plugin-for-all-view-types";
269 269
270 const char kEnableBrowserPluginPointerLock[] = 270 const char kEnableBrowserPluginPointerLock[] =
271 "enable-browser-plugin-pointer-lock"; 271 "enable-browser-plugin-pointer-lock";
272 272
273 // Enable/Disable the creation of compositing layers for fixed position 273 // Enable/Disable the creation of compositing layers for fixed position
274 // elements. Three options are needed to support four possible scenarios: 274 // elements. Three options are needed to support four possible scenarios:
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 = "disable-fixed-position-creates-stacking-context"; 799 = "disable-fixed-position-creates-stacking-context";
800 800
801 // Defer image decoding in WebKit until painting. 801 // Defer image decoding in WebKit until painting.
802 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; 802 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding";
803 803
804 // Disables history navigation in response to horizontal overscroll. 804 // Disables history navigation in response to horizontal overscroll.
805 const char kDisableOverscrollHistoryNavigation[] = 805 const char kDisableOverscrollHistoryNavigation[] =
806 "disable-overscroll-history-navigation"; 806 "disable-overscroll-history-navigation";
807 807
808 } // namespace switches 808 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698