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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
330 // Enable multithreaded GPU compositing of web content. | 330 // Enable multithreaded GPU compositing of web content. |
331 const char kEnableThreadedCompositing[] = "enable-threaded-compositing"; | 331 const char kEnableThreadedCompositing[] = "enable-threaded-compositing"; |
332 | 332 |
333 // Enable use of experimental TCP sockets API for sending data in the | 333 // Enable use of experimental TCP sockets API for sending data in the |
334 // SYN packet. | 334 // SYN packet. |
335 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; | 335 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; |
336 | 336 |
337 // Enable support for JavaScript touch events. | 337 // Enable support for JavaScript touch events. |
338 const char kEnableTouchEvents[] = "enable-touch-events"; | 338 const char kEnableTouchEvents[] = "enable-touch-events"; |
339 | 339 |
340 // Enables hardware acceleration for video decode on Linux and ChromeOS | |
341 // on Intel CPUs (mostly Sandy Bridge+) using VAAPI. | |
342 const char kEnableVaapiDecodeAcceleration[] = "enable-vaapi-decode-accel"; | |
Ami GONE FROM CHROMIUM
2012/03/21 13:16:24
Can VAAPI be used for anything other than video de
Pawel Osciak
2012/03/21 18:40:35
No
| |
343 | |
340 // Enables support for video tracks. Current implementation is | 344 // Enables support for video tracks. Current implementation is |
341 // incomplete and this flag is used for development and testing. | 345 // incomplete and this flag is used for development and testing. |
342 const char kEnableVideoTrack[] = "enable-video-track"; | 346 const char kEnableVideoTrack[] = "enable-video-track"; |
343 | 347 |
344 // Disable Web Intents. | 348 // Disable Web Intents. |
345 const char kDisableWebIntents[] = "disable-web-intents"; | 349 const char kDisableWebIntents[] = "disable-web-intents"; |
346 | 350 |
347 // Enables experimental features for the geolocation API. | 351 // Enables experimental features for the geolocation API. |
348 // Current features: | 352 // Current features: |
349 // - CoreLocation support for Mac OS X 10.6 | 353 // - CoreLocation support for Mac OS X 10.6 |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
644 | 648 |
645 // Disables the use of a 3D software rasterizer. | 649 // Disables the use of a 3D software rasterizer. |
646 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; | 650 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; |
647 | 651 |
648 #if defined(USE_AURA) | 652 #if defined(USE_AURA) |
649 // Forces usage of the test compositor. Needed to run ui tests on bots. | 653 // Forces usage of the test compositor. Needed to run ui tests on bots. |
650 extern const char kTestCompositor[] = "test-compositor"; | 654 extern const char kTestCompositor[] = "test-compositor"; |
651 #endif | 655 #endif |
652 | 656 |
653 } // namespace switches | 657 } // namespace switches |
OLD | NEW |