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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 // Enables support for inband text tracks in media content. | 441 // Enables support for inband text tracks in media content. |
442 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks"; | 442 const char kEnableInbandTextTracks[] = "enable-inband-text-tracks"; |
443 | 443 |
444 // Force logging to be enabled. Logging is disabled by default in release | 444 // Force logging to be enabled. Logging is disabled by default in release |
445 // builds. | 445 // builds. |
446 const char kEnableLogging[] = "enable-logging"; | 446 const char kEnableLogging[] = "enable-logging"; |
447 | 447 |
448 // Enables the memory benchmarking extension | 448 // Enables the memory benchmarking extension |
449 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; | 449 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; |
450 | 450 |
451 // Enables use of cache if offline, even if it's stale | |
452 const char kEnableOfflineCacheAccess[] = "enable-offline-cache-access"; | |
453 | |
454 // Enable rasterizer that writes directly to GPU memory. | 451 // Enable rasterizer that writes directly to GPU memory. |
455 const char kEnableOneCopy[] = "enable-one-copy"; | 452 const char kEnableOneCopy[] = "enable-one-copy"; |
456 | 453 |
457 // Enables use of hardware overlay for fullscreen video playback. Android only. | 454 // Enables use of hardware overlay for fullscreen video playback. Android only. |
458 const char kEnableOverlayFullscreenVideo[] = "enable-overlay-fullscreen-video"; | 455 const char kEnableOverlayFullscreenVideo[] = "enable-overlay-fullscreen-video"; |
459 | 456 |
460 // Disables blink subtitle and media control on top of overlay fullscreen video. | 457 // Disables blink subtitle and media control on top of overlay fullscreen video. |
461 const char kDisableOverlayFullscreenVideoSubtitle[] = | 458 const char kDisableOverlayFullscreenVideoSubtitle[] = |
462 "disable-overlay-fullscreen-video-subtitle"; | 459 "disable-overlay-fullscreen-video-subtitle"; |
463 | 460 |
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1005 | 1002 |
1006 // Disables support for Core Animation plugins. This is triggered when | 1003 // Disables support for Core Animation plugins. This is triggered when |
1007 // accelerated compositing is disabled. See http://crbug.com/122430 . | 1004 // accelerated compositing is disabled. See http://crbug.com/122430 . |
1008 const char kDisableCoreAnimationPlugins[] = | 1005 const char kDisableCoreAnimationPlugins[] = |
1009 "disable-core-animation-plugins"; | 1006 "disable-core-animation-plugins"; |
1010 #endif | 1007 #endif |
1011 | 1008 |
1012 // Don't dump stuff here, follow the same order as the header. | 1009 // Don't dump stuff here, follow the same order as the header. |
1013 | 1010 |
1014 } // namespace switches | 1011 } // namespace switches |
OLD | NEW |