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

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

Issue 8404026: Add a command line flag (--enable-fixed-position-compositing) for enabling compositing (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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/public/common/content_switches.h ('k') | webkit/glue/webpreferences.h » ('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) 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/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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 // SKIA_GPU flag, which can be enabled by setting use_skia_gpu variable to 1 174 // SKIA_GPU flag, which can be enabled by setting use_skia_gpu variable to 1
175 // in build/features_override.gypi. 175 // in build/features_override.gypi.
176 const char kEnableAcceleratedDrawing[] = "enable-accelerated-drawing"; 176 const char kEnableAcceleratedDrawing[] = "enable-accelerated-drawing";
177 177
178 // Enables WebKit accessibility within the renderer process. 178 // Enables WebKit accessibility within the renderer process.
179 const char kEnableAccessibility[] = "enable-accessibility"; 179 const char kEnableAccessibility[] = "enable-accessibility";
180 180
181 // Turns on extremely verbose logging of accessibility events. 181 // Turns on extremely verbose logging of accessibility events.
182 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging"; 182 const char kEnableAccessibilityLogging[] = "enable-accessibility-logging";
183 183
184 // Enables the creation of compositing layers for fixed position elements.
185 const char kEnableCompositingForFixedPosition[] =
186 "enable-fixed-position-compositing";
187
184 // Enable DNS side checking of certificates. Still experimental, should only 188 // Enable DNS side checking of certificates. Still experimental, should only
185 // be used by developers at the current time. 189 // be used by developers at the current time.
186 const char kEnableDNSCertProvenanceChecking[] = 190 const char kEnableDNSCertProvenanceChecking[] =
187 "enable-dns-cert-provenance-checking"; 191 "enable-dns-cert-provenance-checking";
188 192
189 // Enables device motion events. 193 // Enables device motion events.
190 const char kEnableDeviceMotion[] = "enable-device-motion"; 194 const char kEnableDeviceMotion[] = "enable-device-motion";
191 195
192 // Enable the JavaScript Full Screen API. 196 // Enable the JavaScript Full Screen API.
193 const char kDisableFullScreen[] = "disable-fullscreen"; 197 const char kDisableFullScreen[] = "disable-fullscreen";
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 // instead of NSS for SSL. 507 // instead of NSS for SSL.
504 const char kUseSystemSSL[] = "use-system-ssl"; 508 const char kUseSystemSSL[] = "use-system-ssl";
505 #endif 509 #endif
506 510
507 #if !defined(OFFICIAL_BUILD) 511 #if !defined(OFFICIAL_BUILD)
508 // Causes the renderer process to throw an assertion on launch. 512 // Causes the renderer process to throw an assertion on launch.
509 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; 513 const char kRendererCheckFalseTest[] = "renderer-check-false-test";
510 #endif 514 #endif
511 515
512 } // namespace switches 516 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | webkit/glue/webpreferences.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698