| 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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 | 405 |
| 406 // Defer image decoding in WebKit until painting. | 406 // Defer image decoding in WebKit until painting. |
| 407 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; | 407 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; |
| 408 | 408 |
| 409 // Enables delegated renderer. | 409 // Enables delegated renderer. |
| 410 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; | 410 const char kEnableDelegatedRenderer[] = "enable-delegated-renderer"; |
| 411 | 411 |
| 412 // Enables restarting interrupted downloads. | 412 // Enables restarting interrupted downloads. |
| 413 const char kEnableDownloadResumption[] = "enable-download-resumption"; | 413 const char kEnableDownloadResumption[] = "enable-download-resumption"; |
| 414 | 414 |
| 415 // Enables running the SharedWorker inside the renderer process. |
| 416 const char kEnableEmbeddedSharedWorker[] = "enable-embedded-shared-worker"; |
| 417 |
| 415 // Enables support for Encrypted Media Extensions (e.g. MediaKeys). | 418 // Enables support for Encrypted Media Extensions (e.g. MediaKeys). |
| 416 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; | 419 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; |
| 417 | 420 |
| 418 // Enable experimental canvas features, e.g. canvas 2D context attributes | 421 // Enable experimental canvas features, e.g. canvas 2D context attributes |
| 419 const char kEnableExperimentalCanvasFeatures[] = | 422 const char kEnableExperimentalCanvasFeatures[] = |
| 420 "enable-experimental-canvas-features"; | 423 "enable-experimental-canvas-features"; |
| 421 | 424 |
| 422 // Enables Web Platform features that are in development. | 425 // Enables Web Platform features that are in development. |
| 423 const char kEnableExperimentalWebPlatformFeatures[] = | 426 const char kEnableExperimentalWebPlatformFeatures[] = |
| 424 "enable-experimental-web-platform-features"; | 427 "enable-experimental-web-platform-features"; |
| (...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1039 #endif | 1042 #endif |
| 1040 | 1043 |
| 1041 #if defined(OS_POSIX) | 1044 #if defined(OS_POSIX) |
| 1042 // Causes the child processes to cleanly exit via calling exit(). | 1045 // Causes the child processes to cleanly exit via calling exit(). |
| 1043 const char kChildCleanExit[] = "child-clean-exit"; | 1046 const char kChildCleanExit[] = "child-clean-exit"; |
| 1044 #endif | 1047 #endif |
| 1045 | 1048 |
| 1046 // Don't dump stuff here, follow the same order as the header. | 1049 // Don't dump stuff here, follow the same order as the header. |
| 1047 | 1050 |
| 1048 } // namespace switches | 1051 } // namespace switches |
| OLD | NEW |