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

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

Issue 579423003: Revert of Enable V8 idle notification after commit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 243
244 // Disable smooth scrolling for testing. 244 // Disable smooth scrolling for testing.
245 const char kDisableSmoothScrolling[] = "disable-smooth-scrolling"; 245 const char kDisableSmoothScrolling[] = "disable-smooth-scrolling";
246 246
247 // Disables the use of a 3D software rasterizer. 247 // Disables the use of a 3D software rasterizer.
248 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; 248 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer";
249 249
250 // Disable multithreaded GPU compositing of web content. 250 // Disable multithreaded GPU compositing of web content.
251 const char kDisableThreadedCompositing[] = "disable-threaded-compositing"; 251 const char kDisableThreadedCompositing[] = "disable-threaded-compositing";
252 252
253 // Disable V8 idle notification after commit.
254 // Overrides kEnableV8IdleNotificationAfterCommit.
255 const char kDisableV8IdleNotificationAfterCommit[] =
256 "disable-v8-idle-notification-after-commit";
257
258 // Don't enforce the same-origin policy. (Used by people testing their sites.) 253 // Don't enforce the same-origin policy. (Used by people testing their sites.)
259 const char kDisableWebSecurity[] = "disable-web-security"; 254 const char kDisableWebSecurity[] = "disable-web-security";
260 255
261 // Disables support for XSLT. 256 // Disables support for XSLT.
262 const char kDisableXSLT[] = "disable-xslt"; 257 const char kDisableXSLT[] = "disable-xslt";
263 258
264 // Disables Blink's XSSAuditor. The XSSAuditor mitigates reflective XSS. 259 // Disables Blink's XSSAuditor. The XSSAuditor mitigates reflective XSS.
265 const char kDisableXSSAuditor[] = "disable-xss-auditor"; 260 const char kDisableXSSAuditor[] = "disable-xss-auditor";
266 261
267 // Disable rasterizer that writes directly to GPU memory associated with tiles. 262 // Disable rasterizer that writes directly to GPU memory associated with tiles.
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 // The filename to write the output of the test tracing to. 448 // The filename to write the output of the test tracing to.
454 const char kEnableTracingOutput[] = "enable-tracing-output"; 449 const char kEnableTracingOutput[] = "enable-tracing-output";
455 450
456 // Enable screen capturing support for MediaStream API. 451 // Enable screen capturing support for MediaStream API.
457 const char kEnableUserMediaScreenCapturing[] = 452 const char kEnableUserMediaScreenCapturing[] =
458 "enable-usermedia-screen-capturing"; 453 "enable-usermedia-screen-capturing";
459 454
460 // Enables streaming scripts to V8 while loading. 455 // Enables streaming scripts to V8 while loading.
461 const char kEnableV8ScriptStreaming[] = "enable-v8-script-streaming"; 456 const char kEnableV8ScriptStreaming[] = "enable-v8-script-streaming";
462 457
463 // Send a notification from RenderWidgetCompositor to V8 to do idle work
464 // (e.g. garbage collection) after the commit until the beginning of the next
465 // frame. This moves the work off the critical path where compositor is waiting
466 // for the main thread. The flag is experimental until the implementation of the
467 // V8 idle handler is completed.
468 const char kEnableV8IdleNotificationAfterCommit[] =
469 "enable-v8-idle-notification-after-commit";
470
471 // Enables the use of the @viewport CSS rule, which allows 458 // Enables the use of the @viewport CSS rule, which allows
472 // pages to control aspects of their own layout. This also turns on touch-screen 459 // pages to control aspects of their own layout. This also turns on touch-screen
473 // pinch gestures. 460 // pinch gestures.
474 const char kEnableViewport[] = "enable-viewport"; 461 const char kEnableViewport[] = "enable-viewport";
475 462
476 // Enables the use of the legacy viewport meta tag. Turning this on also 463 // Enables the use of the legacy viewport meta tag. Turning this on also
477 // turns on the @viewport CSS rule 464 // turns on the @viewport CSS rule
478 const char kEnableViewportMeta[] = "enable-viewport-meta"; 465 const char kEnableViewportMeta[] = "enable-viewport-meta";
479 466
480 // Resizes of the main frame are the caused by changing between landscape 467 // Resizes of the main frame are the caused by changing between landscape
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
698 const char kRendererStartupDialog[] = "renderer-startup-dialog"; 685 const char kRendererStartupDialog[] = "renderer-startup-dialog";
699 686
700 // Causes the process to run as a sandbox IPC subprocess. 687 // Causes the process to run as a sandbox IPC subprocess.
701 const char kSandboxIPCProcess[] = "sandbox-ipc"; 688 const char kSandboxIPCProcess[] = "sandbox-ipc";
702 689
703 // Enables or disables scroll end effect in response to vertical overscroll. 690 // Enables or disables scroll end effect in response to vertical overscroll.
704 // Set the value to '1' to enable the feature, and set to '0' to disable. 691 // Set the value to '1' to enable the feature, and set to '0' to disable.
705 // Defaults to disabled. 692 // Defaults to disabled.
706 const char kScrollEndEffect[] = "scroll-end-effect"; 693 const char kScrollEndEffect[] = "scroll-end-effect";
707 694
695 // Send a notification from RenderWidgetCompositor to V8 to do idle work
696 // (e.g. garbage collection) after the commit until the beginning of the next
697 // frame. This moves the work off the critical path where compositor is waiting
698 // for the main thread. The flag is experimental until the implementation of the
699 // V8 idle handler is completed.
700 const char kSendV8IdleNotificationAfterCommit[] =
701 "send-v8-idle-notification-after-commit";
702
708 // Visibly render a border around paint rects in the web page to help debug 703 // Visibly render a border around paint rects in the web page to help debug
709 // and study painting behavior. 704 // and study painting behavior.
710 const char kShowPaintRects[] = "show-paint-rects"; 705 const char kShowPaintRects[] = "show-paint-rects";
711 706
712 // Runs the renderer and plugins in the same process as the browser 707 // Runs the renderer and plugins in the same process as the browser
713 const char kSingleProcess[] = "single-process"; 708 const char kSingleProcess[] = "single-process";
714 709
715 // Experimentally enforces a one-site-per-process security policy. 710 // Experimentally enforces a one-site-per-process security policy.
716 // All cross-site navigations force process swaps, and we can restrict a 711 // All cross-site navigations force process swaps, and we can restrict a
717 // renderer process's access rights based on its site. For details, see: 712 // renderer process's access rights based on its site. For details, see:
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
942 // Enable the Win32K process mitigation policy for renderer processes which 937 // Enable the Win32K process mitigation policy for renderer processes which
943 // prevents them from invoking user32 and gdi32 system calls which enter 938 // prevents them from invoking user32 and gdi32 system calls which enter
944 // the kernel. This is only supported on Windows 8 and beyond. 939 // the kernel. This is only supported on Windows 8 and beyond.
945 const char kEnableWin32kRendererLockDown[] 940 const char kEnableWin32kRendererLockDown[]
946 = "enable_win32k_renderer_lockdown"; 941 = "enable_win32k_renderer_lockdown";
947 #endif 942 #endif
948 943
949 // Don't dump stuff here, follow the same order as the header. 944 // Don't dump stuff here, follow the same order as the header.
950 945
951 } // namespace switches 946 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/gpu/render_widget_compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698