| OLD | NEW |
| 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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 const char kEnableViewportMeta[] = "enable-viewport-meta"; | 466 const char kEnableViewportMeta[] = "enable-viewport-meta"; |
| 467 | 467 |
| 468 // Resizes of the main frame are the caused by changing between landscape | 468 // Resizes of the main frame are the caused by changing between landscape |
| 469 // and portrait mode (i.e. Android) so the page should be rescaled to fit | 469 // and portrait mode (i.e. Android) so the page should be rescaled to fit |
| 470 const char kMainFrameResizesAreOrientationChanges[] = | 470 const char kMainFrameResizesAreOrientationChanges[] = |
| 471 "main-frame-resizes-are-orientation-changes"; | 471 "main-frame-resizes-are-orientation-changes"; |
| 472 | 472 |
| 473 // Enable the Vtune profiler support. | 473 // Enable the Vtune profiler support. |
| 474 const char kEnableVtune[] = "enable-vtune-support"; | 474 const char kEnableVtune[] = "enable-vtune-support"; |
| 475 | 475 |
| 476 // Enable SVG Animations on the Web Animations model. | |
| 477 const char kEnableWebAnimationsSVG[] = "enable-web-animations-svg"; | |
| 478 | |
| 479 // Enables WebGL extensions not yet approved by the community. | 476 // Enables WebGL extensions not yet approved by the community. |
| 480 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; | 477 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; |
| 481 | 478 |
| 482 // Enables WebGL rendering into a scanout buffer for overlay support. | 479 // Enables WebGL rendering into a scanout buffer for overlay support. |
| 483 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; | 480 const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; |
| 484 | 481 |
| 485 // Enables Web MIDI API. | 482 // Enables Web MIDI API. |
| 486 const char kEnableWebMIDI[] = "enable-web-midi"; | 483 const char kEnableWebMIDI[] = "enable-web-midi"; |
| 487 | 484 |
| 488 // Enable rasterizer that writes directly to GPU memory associated with tiles. | 485 // Enable rasterizer that writes directly to GPU memory associated with tiles. |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 941 // Enable the Win32K process mitigation policy for renderer processes which | 938 // Enable the Win32K process mitigation policy for renderer processes which |
| 942 // prevents them from invoking user32 and gdi32 system calls which enter | 939 // prevents them from invoking user32 and gdi32 system calls which enter |
| 943 // the kernel. This is only supported on Windows 8 and beyond. | 940 // the kernel. This is only supported on Windows 8 and beyond. |
| 944 const char kEnableWin32kRendererLockDown[] | 941 const char kEnableWin32kRendererLockDown[] |
| 945 = "enable_win32k_renderer_lockdown"; | 942 = "enable_win32k_renderer_lockdown"; |
| 946 #endif | 943 #endif |
| 947 | 944 |
| 948 // Don't dump stuff here, follow the same order as the header. | 945 // Don't dump stuff here, follow the same order as the header. |
| 949 | 946 |
| 950 } // namespace switches | 947 } // namespace switches |
| OLD | NEW |