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

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

Issue 8163008: Add command line switch for enabling threaded compositing (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Upload patch against correct base Created 9 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/common/content_switches.h ('k') | content/common/view_messages.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/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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 // Cause the OS X sandbox write to syslog every time an access to a resource 220 // Cause the OS X sandbox write to syslog every time an access to a resource
221 // is denied by the sandbox. 221 // is denied by the sandbox.
222 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; 222 const char kEnableSandboxLogging[] = "enable-sandbox-logging";
223 223
224 // Enable the seccomp sandbox (Linux only) 224 // Enable the seccomp sandbox (Linux only)
225 const char kEnableSeccompSandbox[] = "enable-seccomp-sandbox"; 225 const char kEnableSeccompSandbox[] = "enable-seccomp-sandbox";
226 226
227 // Enables StatsTable, logging statistics to a global named shared memory table. 227 // Enables StatsTable, logging statistics to a global named shared memory table.
228 const char kEnableStatsTable[] = "enable-stats-table"; 228 const char kEnableStatsTable[] = "enable-stats-table";
229 229
230 // Enable multithreaded GPU compositing of web content.
231 const char kEnableThreadedCompositing[] = "enable-threaded-compositing";
232
230 // Enable use of experimental TCP sockets API for sending data in the 233 // Enable use of experimental TCP sockets API for sending data in the
231 // SYN packet. 234 // SYN packet.
232 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; 235 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen";
233 236
234 // Enables support for fullscreen video. Current implementation is 237 // Enables support for fullscreen video. Current implementation is
235 // incomplete and this flag is used for development and testing. 238 // incomplete and this flag is used for development and testing.
236 const char kEnableVideoFullscreen[] = "enable-video-fullscreen"; 239 const char kEnableVideoFullscreen[] = "enable-video-fullscreen";
237 240
238 // Enables video logging where video elements log playback performance data to 241 // Enables video logging where video elements log playback performance data to
239 // the debug log. 242 // the debug log.
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 // instead of NSS for SSL. 490 // instead of NSS for SSL.
488 const char kUseSystemSSL[] = "use-system-ssl"; 491 const char kUseSystemSSL[] = "use-system-ssl";
489 #endif 492 #endif
490 493
491 #if !defined(OFFICIAL_BUILD) 494 #if !defined(OFFICIAL_BUILD)
492 // Causes the renderer process to throw an assertion on launch. 495 // Causes the renderer process to throw an assertion on launch.
493 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; 496 const char kRendererCheckFalseTest[] = "renderer-check-false-test";
494 #endif 497 #endif
495 498
496 } // namespace switches 499 } // namespace switches
OLDNEW
« no previous file with comments | « content/common/content_switches.h ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698