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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 // 3. Disabled always. | 342 // 3. Disabled always. |
343 const char kEnableCompositingForTransition[] = | 343 const char kEnableCompositingForTransition[] = |
344 "enable-transition-compositing"; | 344 "enable-transition-compositing"; |
345 | 345 |
346 // Defer image decoding in WebKit until painting. | 346 // Defer image decoding in WebKit until painting. |
347 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; | 347 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; |
348 | 348 |
349 // Enables delegated renderer. | 349 // Enables delegated renderer. |
350 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; | 350 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; |
351 | 351 |
| 352 // Enables display list based 2d canvas implementation. |
| 353 const char kEnableDisplayList2dCanvas[] = "enable-display-list-2d-canvas"; |
| 354 |
352 // Enables restarting interrupted downloads. | 355 // Enables restarting interrupted downloads. |
353 const char kEnableDownloadResumption[] = "enable-download-resumption"; | 356 const char kEnableDownloadResumption[] = "enable-download-resumption"; |
354 | 357 |
355 // Enables support for Encrypted Media Extensions (e.g. MediaKeys). | 358 // Enables support for Encrypted Media Extensions (e.g. MediaKeys). |
356 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; | 359 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; |
357 | 360 |
358 // Enable experimental canvas features, e.g. canvas 2D context attributes | 361 // Enable experimental canvas features, e.g. canvas 2D context attributes |
359 const char kEnableExperimentalCanvasFeatures[] = | 362 const char kEnableExperimentalCanvasFeatures[] = |
360 "enable-experimental-canvas-features"; | 363 "enable-experimental-canvas-features"; |
361 | 364 |
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
944 // Enable the Win32K process mitigation policy for renderer processes which | 947 // Enable the Win32K process mitigation policy for renderer processes which |
945 // prevents them from invoking user32 and gdi32 system calls which enter | 948 // prevents them from invoking user32 and gdi32 system calls which enter |
946 // the kernel. This is only supported on Windows 8 and beyond. | 949 // the kernel. This is only supported on Windows 8 and beyond. |
947 const char kEnableWin32kRendererLockDown[] | 950 const char kEnableWin32kRendererLockDown[] |
948 = "enable_win32k_renderer_lockdown"; | 951 = "enable_win32k_renderer_lockdown"; |
949 #endif | 952 #endif |
950 | 953 |
951 // Don't dump stuff here, follow the same order as the header. | 954 // Don't dump stuff here, follow the same order as the header. |
952 | 955 |
953 } // namespace switches | 956 } // namespace switches |
OLD | NEW |