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

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

Issue 382333002: Introduce ChannelMojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renamed ChanelBuilder to ChannelFactory Created 6 years, 5 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
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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 // also applys to workers. 421 // also applys to workers.
422 const char kEnablePreciseMemoryInfo[] = "enable-precise-memory-info"; 422 const char kEnablePreciseMemoryInfo[] = "enable-precise-memory-info";
423 423
424 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. 424 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407.
425 const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching"; 425 const char kEnablePreparsedJsCaching[] = "enable-preparsed-js-caching";
426 426
427 // Enables the CSS multicol implementation that uses the regions implementation. 427 // Enables the CSS multicol implementation that uses the regions implementation.
428 const char kEnableRegionBasedColumns[] = 428 const char kEnableRegionBasedColumns[] =
429 "enable-region-based-columns"; 429 "enable-region-based-columns";
430 430
431 // Replaces renderer-browser IPC channel with ChnanelMojo.
432 const char kEnableRendererMojoChannel[] =
433 "enable-renderer-mojo-channel";
434
431 // Enables targeted style recalculation optimizations. 435 // Enables targeted style recalculation optimizations.
432 const char kEnableTargetedStyleRecalc[] = 436 const char kEnableTargetedStyleRecalc[] =
433 "enable-targeted-style-recalc"; 437 "enable-targeted-style-recalc";
434 438
435 // Cause the OS X sandbox write to syslog every time an access to a resource 439 // Cause the OS X sandbox write to syslog every time an access to a resource
436 // is denied by the sandbox. 440 // is denied by the sandbox.
437 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; 441 const char kEnableSandboxLogging[] = "enable-sandbox-logging";
438 442
439 // Enables seccomp-bpf support for Android. Requires experimental kernel 443 // Enables seccomp-bpf support for Android. Requires experimental kernel
440 // support. <http://crbug.com/166704> 444 // support. <http://crbug.com/166704>
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
944 // Enable the Win32K process mitigation policy for renderer processes which 948 // Enable the Win32K process mitigation policy for renderer processes which
945 // prevents them from invoking user32 and gdi32 system calls which enter 949 // prevents them from invoking user32 and gdi32 system calls which enter
946 // the kernel. This is only supported on Windows 8 and beyond. 950 // the kernel. This is only supported on Windows 8 and beyond.
947 const char kEnableWin32kRendererLockDown[] 951 const char kEnableWin32kRendererLockDown[]
948 = "enable_win32k_renderer_lockdown"; 952 = "enable_win32k_renderer_lockdown";
949 #endif 953 #endif
950 954
951 // Don't dump stuff here, follow the same order as the header. 955 // Don't dump stuff here, follow the same order as the header.
952 956
953 } // namespace switches 957 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698