| 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 | 404 |
| 405 // Defer image decoding in WebKit until painting. | 405 // Defer image decoding in WebKit until painting. |
| 406 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; | 406 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; |
| 407 | 407 |
| 408 // Enables the deadline scheduler. | 408 // Enables the deadline scheduler. |
| 409 const char kEnableDeadlineScheduling[] = "enable-deadline-scheduling"; | 409 const char kEnableDeadlineScheduling[] = "enable-deadline-scheduling"; |
| 410 | 410 |
| 411 // Enables delegated renderer. | 411 // Enables delegated renderer. |
| 412 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; | 412 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; |
| 413 | 413 |
| 414 // Enables DOM Distiller. |
| 415 const char kEnableDomDistiller[] = "enable-dom-distiller"; |
| 416 |
| 414 // Enables restarting interrupted downloads. | 417 // Enables restarting interrupted downloads. |
| 415 const char kEnableDownloadResumption[] = "enable-download-resumption"; | 418 const char kEnableDownloadResumption[] = "enable-download-resumption"; |
| 416 | 419 |
| 417 // Enables support for Encrypted Media Extensions (e.g. MediaKeys). | 420 // Enables support for Encrypted Media Extensions (e.g. MediaKeys). |
| 418 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; | 421 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; |
| 419 | 422 |
| 420 // Enable experimental canvas features, e.g. canvas 2D context attributes | 423 // Enable experimental canvas features, e.g. canvas 2D context attributes |
| 421 const char kEnableExperimentalCanvasFeatures[] = | 424 const char kEnableExperimentalCanvasFeatures[] = |
| 422 "enable-experimental-canvas-features"; | 425 "enable-experimental-canvas-features"; |
| 423 | 426 |
| (...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1017 #endif | 1020 #endif |
| 1018 | 1021 |
| 1019 #if defined(OS_POSIX) | 1022 #if defined(OS_POSIX) |
| 1020 // Causes the child processes to cleanly exit via calling exit(). | 1023 // Causes the child processes to cleanly exit via calling exit(). |
| 1021 const char kChildCleanExit[] = "child-clean-exit"; | 1024 const char kChildCleanExit[] = "child-clean-exit"; |
| 1022 #endif | 1025 #endif |
| 1023 | 1026 |
| 1024 // Don't dump stuff here, follow the same order as the header. | 1027 // Don't dump stuff here, follow the same order as the header. |
| 1025 | 1028 |
| 1026 } // namespace switches | 1029 } // namespace switches |
| OLD | NEW |