| 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 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; | 413 const char kEnableEncryptedMedia[] = "enable-encrypted-media"; |
| 414 | 414 |
| 415 // Enable experimental canvas features, e.g. canvas 2D context attributes | 415 // Enable experimental canvas features, e.g. canvas 2D context attributes |
| 416 const char kEnableExperimentalCanvasFeatures[] = | 416 const char kEnableExperimentalCanvasFeatures[] = |
| 417 "enable-experimental-canvas-features"; | 417 "enable-experimental-canvas-features"; |
| 418 | 418 |
| 419 // Enables Web Platform features that are in development. | 419 // Enables Web Platform features that are in development. |
| 420 const char kEnableExperimentalWebPlatformFeatures[] = | 420 const char kEnableExperimentalWebPlatformFeatures[] = |
| 421 "enable-experimental-web-platform-features"; | 421 "enable-experimental-web-platform-features"; |
| 422 | 422 |
| 423 // Enable an experimental WebSocket implementation. | |
| 424 const char kEnableExperimentalWebSocket[] = "enable-experimental-websocket"; | |
| 425 | |
| 426 // By default, cookies are not allowed on file://. They are needed for testing, | 423 // By default, cookies are not allowed on file://. They are needed for testing, |
| 427 // for example page cycler and layout tests. See bug 1157243. | 424 // for example page cycler and layout tests. See bug 1157243. |
| 428 const char kEnableFileCookies[] = "enable-file-cookies"; | 425 const char kEnableFileCookies[] = "enable-file-cookies"; |
| 429 | 426 |
| 430 // Enable the fast text autosizing implementation. | 427 // Enable the fast text autosizing implementation. |
| 431 const char kEnableFastTextAutosizing[] = "enable-fast-text-autosizing"; | 428 const char kEnableFastTextAutosizing[] = "enable-fast-text-autosizing"; |
| 432 | 429 |
| 433 const char kEnableFixedPositionCreatesStackingContext[] | 430 const char kEnableFixedPositionCreatesStackingContext[] |
| 434 = "enable-fixed-position-creates-stacking-context"; | 431 = "enable-fixed-position-creates-stacking-context"; |
| 435 | 432 |
| (...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1039 | 1036 |
| 1040 // Disables support for Core Animation plugins. This is triggered when | 1037 // Disables support for Core Animation plugins. This is triggered when |
| 1041 // accelerated compositing is disabled. See http://crbug.com/122430 . | 1038 // accelerated compositing is disabled. See http://crbug.com/122430 . |
| 1042 const char kDisableCoreAnimationPlugins[] = | 1039 const char kDisableCoreAnimationPlugins[] = |
| 1043 "disable-core-animation-plugins"; | 1040 "disable-core-animation-plugins"; |
| 1044 #endif | 1041 #endif |
| 1045 | 1042 |
| 1046 // Don't dump stuff here, follow the same order as the header. | 1043 // Don't dump stuff here, follow the same order as the header. |
| 1047 | 1044 |
| 1048 } // namespace switches | 1045 } // namespace switches |
| OLD | NEW |