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 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
413 // tiles may be displayed during fast scrolls especially on slower devices. | 413 // tiles may be displayed during fast scrolls especially on slower devices. |
414 const char kEnableLowResTiling[] = "enable-low-res-tiling"; | 414 const char kEnableLowResTiling[] = "enable-low-res-tiling"; |
415 | 415 |
416 // Force logging to be enabled. Logging is disabled by default in release | 416 // Force logging to be enabled. Logging is disabled by default in release |
417 // builds. | 417 // builds. |
418 const char kEnableLogging[] = "enable-logging"; | 418 const char kEnableLogging[] = "enable-logging"; |
419 | 419 |
420 // Enables the network information API. | 420 // Enables the network information API. |
421 const char kEnableNetworkInformation[] = "enable-network-information"; | 421 const char kEnableNetworkInformation[] = "enable-network-information"; |
422 | 422 |
423 // Enables the new photo picker. | |
424 const char kEnableNewPhotoPicker[] = "enable-new-photo-picker"; | |
Michael van Ouwerkerk
2017/03/14 15:57:27
I don't think you need this.
Finnur
2017/03/15 13:25:07
Done.
| |
425 | |
423 // Disables the video decoder from drawing to an NV12 textures instead of ARGB. | 426 // Disables the video decoder from drawing to an NV12 textures instead of ARGB. |
424 const char kDisableNv12DxgiVideo[] = "disable-nv12-dxgi-video"; | 427 const char kDisableNv12DxgiVideo[] = "disable-nv12-dxgi-video"; |
425 | 428 |
426 // Enables compositor-accelerated touch-screen pinch gestures. | 429 // Enables compositor-accelerated touch-screen pinch gestures. |
427 const char kEnablePinch[] = "enable-pinch"; | 430 const char kEnablePinch[] = "enable-pinch"; |
428 | 431 |
429 // Enables testing features of the Plugin Placeholder. For internal use only. | 432 // Enables testing features of the Plugin Placeholder. For internal use only. |
430 const char kEnablePluginPlaceholderTesting[] = | 433 const char kEnablePluginPlaceholderTesting[] = |
431 "enable-plugin-placeholder-testing"; | 434 "enable-plugin-placeholder-testing"; |
432 | 435 |
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1084 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1087 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1085 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1088 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1086 | 1089 |
1087 // Specifies the testcase used by the IPC fuzzer. | 1090 // Specifies the testcase used by the IPC fuzzer. |
1088 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1091 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1089 #endif | 1092 #endif |
1090 | 1093 |
1091 // Don't dump stuff here, follow the same order as the header. | 1094 // Don't dump stuff here, follow the same order as the header. |
1092 | 1095 |
1093 } // namespace switches | 1096 } // namespace switches |
OLD | NEW |