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

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

Issue 7765007: Revert 98518 - turn on --enable-accelerated-plugins by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « content/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')
Property Changes:
Deleted: svn:mergeinfo
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/common/content_switches.h" 5 #include "content/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 21 matching lines...) Expand all
32 32
33 // Disable gpu-accelerated 2d canvas. 33 // Disable gpu-accelerated 2d canvas.
34 const char kDisableAccelerated2dCanvas[] = "disable-accelerated-2d-canvas"; 34 const char kDisableAccelerated2dCanvas[] = "disable-accelerated-2d-canvas";
35 35
36 // Disables accelerated compositing. 36 // Disables accelerated compositing.
37 const char kDisableAcceleratedCompositing[] = "disable-accelerated-compositing"; 37 const char kDisableAcceleratedCompositing[] = "disable-accelerated-compositing";
38 38
39 // Disables the hardware acceleration of 3D CSS and animation. 39 // Disables the hardware acceleration of 3D CSS and animation.
40 const char kDisableAcceleratedLayers[] = "disable-accelerated-layers"; 40 const char kDisableAcceleratedLayers[] = "disable-accelerated-layers";
41 41
42 // Disables the hardware acceleration of plugins.
43 const char kDisableAcceleratedPlugins[] = "disable-accelerated-plugins";
44
45 // Disables GPU accelerated video display. 42 // Disables GPU accelerated video display.
46 const char kDisableAcceleratedVideo[] = "disable-accelerated-video"; 43 const char kDisableAcceleratedVideo[] = "disable-accelerated-video";
47 44
48 // Disables the alternate window station for the renderer. 45 // Disables the alternate window station for the renderer.
49 const char kDisableAltWinstation[] = "disable-winsta"; 46 const char kDisableAltWinstation[] = "disable-winsta";
50 47
51 // Disable the ApplicationCache. 48 // Disable the ApplicationCache.
52 const char kDisableApplicationCache[] = "disable-application-cache"; 49 const char kDisableApplicationCache[] = "disable-application-cache";
53 // 50 //
54 // TODO(scherkus): remove --disable-audio when we have a proper fallback 51 // TODO(scherkus): remove --disable-audio when we have a proper fallback
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 146
150 // Enable gpu-accelerated 2d canvas. 147 // Enable gpu-accelerated 2d canvas.
151 const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas"; 148 const char kEnableAccelerated2dCanvas[] = "enable-accelerated-2d-canvas";
152 149
153 // Enable hardware accelerated page drawing. 150 // Enable hardware accelerated page drawing.
154 // Please note that this flag is honored only if chromium is compiled with 151 // Please note that this flag is honored only if chromium is compiled with
155 // SKIA_GPU flag, which can be enabled by setting use_skia_gpu variable to 1 152 // SKIA_GPU flag, which can be enabled by setting use_skia_gpu variable to 1
156 // in build/features_override.gypi. 153 // in build/features_override.gypi.
157 const char kEnableAcceleratedDrawing[] = "enable-accelerated-drawing"; 154 const char kEnableAcceleratedDrawing[] = "enable-accelerated-drawing";
158 155
156 // Enables the hardware acceleration of plugins.
157 const char kEnableAcceleratedPlugins[] = "enable-accelerated-plugins";
158
159 // Enables WebKit accessibility within the renderer process. 159 // Enables WebKit accessibility within the renderer process.
160 const char kEnableAccessibility[] = "enable-accessibility"; 160 const char kEnableAccessibility[] = "enable-accessibility";
161 161
162 // Enables the benchmarking extensions. 162 // Enables the benchmarking extensions.
163 const char kEnableBenchmarking[] = "enable-benchmarking"; 163 const char kEnableBenchmarking[] = "enable-benchmarking";
164 164
165 // Enables device motion events. 165 // Enables device motion events.
166 const char kEnableDeviceMotion[] = "enable-device-motion"; 166 const char kEnableDeviceMotion[] = "enable-device-motion";
167 167
168 // Enable the JavaScript Full Screen API. 168 // Enable the JavaScript Full Screen API.
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 // Specify the amount the trackpad should scroll by. 478 // Specify the amount the trackpad should scroll by.
479 const char kScrollPixels[] = "scroll-pixels"; 479 const char kScrollPixels[] = "scroll-pixels";
480 #endif 480 #endif
481 481
482 #if !defined(OFFICIAL_BUILD) 482 #if !defined(OFFICIAL_BUILD)
483 // Causes the renderer process to throw an assertion on launch. 483 // Causes the renderer process to throw an assertion on launch.
484 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; 484 const char kRendererCheckFalseTest[] = "renderer-check-false-test";
485 #endif 485 #endif
486 486
487 } // namespace switches 487 } // namespace switches
OLDNEW
« no previous file with comments | « content/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698