| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
| 7 #include "media/media_features.h" | 7 #include "media/media_features.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 // tiles may be displayed during fast scrolls especially on slower devices. | 396 // tiles may be displayed during fast scrolls especially on slower devices. |
| 397 const char kEnableLowResTiling[] = "enable-low-res-tiling"; | 397 const char kEnableLowResTiling[] = "enable-low-res-tiling"; |
| 398 | 398 |
| 399 // Force logging to be enabled. Logging is disabled by default in release | 399 // Force logging to be enabled. Logging is disabled by default in release |
| 400 // builds. | 400 // builds. |
| 401 const char kEnableLogging[] = "enable-logging"; | 401 const char kEnableLogging[] = "enable-logging"; |
| 402 | 402 |
| 403 // Enables the network information API. | 403 // Enables the network information API. |
| 404 const char kEnableNetworkInformation[] = "enable-network-information"; | 404 const char kEnableNetworkInformation[] = "enable-network-information"; |
| 405 | 405 |
| 406 // Enables the network service. | |
| 407 const char kEnableNetworkService[] = "enable-network-service"; | |
| 408 | |
| 409 // Disables the video decoder from drawing to an NV12 textures instead of ARGB. | 406 // Disables the video decoder from drawing to an NV12 textures instead of ARGB. |
| 410 const char kDisableNv12DxgiVideo[] = "disable-nv12-dxgi-video"; | 407 const char kDisableNv12DxgiVideo[] = "disable-nv12-dxgi-video"; |
| 411 | 408 |
| 412 // Enables compositor-accelerated touch-screen pinch gestures. | 409 // Enables compositor-accelerated touch-screen pinch gestures. |
| 413 const char kEnablePinch[] = "enable-pinch"; | 410 const char kEnablePinch[] = "enable-pinch"; |
| 414 | 411 |
| 415 // Enables testing features of the Plugin Placeholder. For internal use only. | 412 // Enables testing features of the Plugin Placeholder. For internal use only. |
| 416 const char kEnablePluginPlaceholderTesting[] = | 413 const char kEnablePluginPlaceholderTesting[] = |
| 417 "enable-plugin-placeholder-testing"; | 414 "enable-plugin-placeholder-testing"; |
| 418 | 415 |
| (...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1076 // The flag tells the sandbox initialization code inside Chrome that the sandbox | 1073 // The flag tells the sandbox initialization code inside Chrome that the sandbox |
| 1077 // should already be enabled. | 1074 // should already be enabled. |
| 1078 // TODO(kerrnel): Remove this once the V2 sandbox migration is complete, as | 1075 // TODO(kerrnel): Remove this once the V2 sandbox migration is complete, as |
| 1079 // processes will be assumed to run under the V2 sandbox. | 1076 // processes will be assumed to run under the V2 sandbox. |
| 1080 const char kV2SandboxedEnabled[] = "v2-sandbox-enabled"; | 1077 const char kV2SandboxedEnabled[] = "v2-sandbox-enabled"; |
| 1081 #endif // defined(OS_MACOSX) | 1078 #endif // defined(OS_MACOSX) |
| 1082 | 1079 |
| 1083 // Don't dump stuff here, follow the same order as the header. | 1080 // Don't dump stuff here, follow the same order as the header. |
| 1084 | 1081 |
| 1085 } // namespace switches | 1082 } // namespace switches |
| OLD | NEW |