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 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // By default, file:// URIs cannot read other file:// URIs. This is an | 9 // By default, file:// URIs cannot read other file:// URIs. This is an |
10 // override for developers who need the old behavior for testing. | 10 // override for developers who need the old behavior for testing. |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
307 // Enable Gesture Tap Highlight | 307 // Enable Gesture Tap Highlight |
308 const char kEnableGestureTapHighlight[] = "enable-gesture-tap-highlight"; | 308 const char kEnableGestureTapHighlight[] = "enable-gesture-tap-highlight"; |
309 const char kDisableGestureTapHighlight[] = "disable-gesture-tap-highlight"; | 309 const char kDisableGestureTapHighlight[] = "disable-gesture-tap-highlight"; |
310 | 310 |
311 // Enables the GPU benchmarking extension | 311 // Enables the GPU benchmarking extension |
312 const char kEnableGpuBenchmarking[] = "enable-gpu-benchmarking"; | 312 const char kEnableGpuBenchmarking[] = "enable-gpu-benchmarking"; |
313 | 313 |
314 // Enables TRACE for GL calls in the renderer. | 314 // Enables TRACE for GL calls in the renderer. |
315 const char kEnableGpuClientTracing[] = "enable-gpu-client-tracing"; | 315 const char kEnableGpuClientTracing[] = "enable-gpu-client-tracing"; |
316 | 316 |
317 // Enables HW decode acceleration for WebRTC. | |
318 const char kEnableWebRTCHWDecoding[] = "enable-webrtc-hw-decoding"; | |
Ami GONE FROM CHROMIUM
2013/04/26 00:42:05
Move to match other relative locations.
wuchengli
2013/04/26 11:49:14
Done.
| |
319 | |
317 // Enables the memory benchmarking extension | 320 // Enables the memory benchmarking extension |
318 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; | 321 const char kEnableMemoryBenchmarking[] = "enable-memory-benchmarking"; |
319 | 322 |
320 // Force logging to be enabled. Logging is disabled by default in release | 323 // Force logging to be enabled. Logging is disabled by default in release |
321 // builds. | 324 // builds. |
322 const char kEnableLogging[] = "enable-logging"; | 325 const char kEnableLogging[] = "enable-logging"; |
323 | 326 |
324 // Disable Media Source API on <audio>/<video> elements. | 327 // Disable Media Source API on <audio>/<video> elements. |
325 const char kDisableMediaSource[] = "disable-media-source"; | 328 const char kDisableMediaSource[] = "disable-media-source"; |
326 | 329 |
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
763 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; | 766 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; |
764 | 767 |
765 // Use a vsync signal from the browser to the renderer to schedule rendering. | 768 // Use a vsync signal from the browser to the renderer to schedule rendering. |
766 const char kEnableVsyncNotification[] = "enable-vsync-notification"; | 769 const char kEnableVsyncNotification[] = "enable-vsync-notification"; |
767 | 770 |
768 // Enables history navigation in response to horizontal overscroll. | 771 // Enables history navigation in response to horizontal overscroll. |
769 const char kEnableOverscrollHistoryNavigation[] = | 772 const char kEnableOverscrollHistoryNavigation[] = |
770 "enable-overscroll-history-navigation"; | 773 "enable-overscroll-history-navigation"; |
771 | 774 |
772 } // namespace switches | 775 } // namespace switches |
OLD | NEW |