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 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
10 // have an effect. 0 disables MSAA. | 10 // have an effect. 0 disables MSAA. |
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 | 417 |
418 // Defer image decoding in WebKit until painting. | 418 // Defer image decoding in WebKit until painting. |
419 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; | 419 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; |
420 | 420 |
421 // Enables the deadline scheduler. | 421 // Enables the deadline scheduler. |
422 const char kEnableDeadlineScheduling[] = "enable-deadline-scheduling"; | 422 const char kEnableDeadlineScheduling[] = "enable-deadline-scheduling"; |
423 | 423 |
424 // Enables delegated renderer. | 424 // Enables delegated renderer. |
425 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; | 425 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; |
426 | 426 |
| 427 // Enables the DOM distiller. |
| 428 const char kEnableDomDistiller[] = "enable-dom-distiller"; |
| 429 |
427 // Enables restarting interrupted downloads. | 430 // Enables restarting interrupted downloads. |
428 const char kEnableDownloadResumption[] = "enable-download-resumption"; | 431 const char kEnableDownloadResumption[] = "enable-download-resumption"; |
429 | 432 |
430 // Enables support for Encrypted Media Extensions (e.g. MediaKeys). | 433 // Enables support for Encrypted Media Extensions (e.g. MediaKeys). |
431 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; | 434 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; |
432 | 435 |
433 // Enable experimental canvas features, e.g. canvas 2D context attributes | 436 // Enable experimental canvas features, e.g. canvas 2D context attributes |
434 const char kEnableExperimentalCanvasFeatures[] = | 437 const char kEnableExperimentalCanvasFeatures[] = |
435 "enable-experimental-canvas-features"; | 438 "enable-experimental-canvas-features"; |
436 | 439 |
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1049 #endif | 1052 #endif |
1050 | 1053 |
1051 #if defined(OS_POSIX) | 1054 #if defined(OS_POSIX) |
1052 // Causes the child processes to cleanly exit via calling exit(). | 1055 // Causes the child processes to cleanly exit via calling exit(). |
1053 const char kChildCleanExit[] = "child-clean-exit"; | 1056 const char kChildCleanExit[] = "child-clean-exit"; |
1054 #endif | 1057 #endif |
1055 | 1058 |
1056 // Don't dump stuff here, follow the same order as the header. | 1059 // Don't dump stuff here, follow the same order as the header. |
1057 | 1060 |
1058 } // namespace switches | 1061 } // namespace switches |
OLD | NEW |