| 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 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 | 414 |
| 415 // Defer image decoding in WebKit until painting. | 415 // Defer image decoding in WebKit until painting. |
| 416 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; | 416 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; |
| 417 | 417 |
| 418 // Enables the deadline scheduler. | 418 // Enables the deadline scheduler. |
| 419 const char kEnableDeadlineScheduling[] = "enable-deadline-scheduling"; | 419 const char kEnableDeadlineScheduling[] = "enable-deadline-scheduling"; |
| 420 | 420 |
| 421 // Enables delegated renderer. | 421 // Enables delegated renderer. |
| 422 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; | 422 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; |
| 423 | 423 |
| 424 // Enables DOM Distiller. |
| 425 const char kEnableDomDistiller[] = "enable-dom-distiller"; |
| 426 |
| 424 // Enables restarting interrupted downloads. | 427 // Enables restarting interrupted downloads. |
| 425 const char kEnableDownloadResumption[] = "enable-download-resumption"; | 428 const char kEnableDownloadResumption[] = "enable-download-resumption"; |
| 426 | 429 |
| 427 // Enables support for Encrypted Media Extensions (e.g. MediaKeys). | 430 // Enables support for Encrypted Media Extensions (e.g. MediaKeys). |
| 428 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; | 431 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; |
| 429 | 432 |
| 430 // Enable experimental canvas features, e.g. canvas 2D context attributes | 433 // Enable experimental canvas features, e.g. canvas 2D context attributes |
| 431 const char kEnableExperimentalCanvasFeatures[] = | 434 const char kEnableExperimentalCanvasFeatures[] = |
| 432 "enable-experimental-canvas-features"; | 435 "enable-experimental-canvas-features"; |
| 433 | 436 |
| (...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1031 #endif | 1034 #endif |
| 1032 | 1035 |
| 1033 #if defined(OS_POSIX) | 1036 #if defined(OS_POSIX) |
| 1034 // Causes the child processes to cleanly exit via calling exit(). | 1037 // Causes the child processes to cleanly exit via calling exit(). |
| 1035 const char kChildCleanExit[] = "child-clean-exit"; | 1038 const char kChildCleanExit[] = "child-clean-exit"; |
| 1036 #endif | 1039 #endif |
| 1037 | 1040 |
| 1038 // Don't dump stuff here, follow the same order as the header. | 1041 // Don't dump stuff here, follow the same order as the header. |
| 1039 | 1042 |
| 1040 } // namespace switches | 1043 } // namespace switches |
| OLD | NEW |