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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 | 284 |
285 // Enables support for fullscreen video. Current implementation is | 285 // Enables support for fullscreen video. Current implementation is |
286 // incomplete and this flag is used for development and testing. | 286 // incomplete and this flag is used for development and testing. |
287 const char kEnableVideoFullscreen[] = "enable-video-fullscreen"; | 287 const char kEnableVideoFullscreen[] = "enable-video-fullscreen"; |
288 | 288 |
289 // Enables support for video tracks. Current implementation is | 289 // Enables support for video tracks. Current implementation is |
290 // incomplete and this flag is used for development and testing. | 290 // incomplete and this flag is used for development and testing. |
291 const char kEnableVideoTrack[] = "enable-video-track"; | 291 const char kEnableVideoTrack[] = "enable-video-track"; |
292 | 292 |
293 // Enable Web Intents. | 293 // Enable Web Intents. |
294 const char kDisableWebIntents[] = "disable-web-intents"; | 294 const char kEnableWebIntents[] = "enable-web-intents"; |
295 | 295 |
296 // Enables experimental features for the geolocation API. | 296 // Enables experimental features for the geolocation API. |
297 // Current features: | 297 // Current features: |
298 // - CoreLocation support for Mac OS X 10.6 | 298 // - CoreLocation support for Mac OS X 10.6 |
299 // - Gateway location for Linux and Windows | 299 // - Gateway location for Linux and Windows |
300 // - Location platform support for Windows 7 | 300 // - Location platform support for Windows 7 |
301 const char kExperimentalLocationFeatures[] = "experimental-location-features"; | 301 const char kExperimentalLocationFeatures[] = "experimental-location-features"; |
302 | 302 |
303 // Load NPAPI plugins from the specified directory. | 303 // Load NPAPI plugins from the specified directory. |
304 const char kExtraPluginDir[] = "extra-plugin-dir"; | 304 const char kExtraPluginDir[] = "extra-plugin-dir"; |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
571 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; | 571 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; |
572 #endif | 572 #endif |
573 | 573 |
574 // Enable per-tile page painting. | 574 // Enable per-tile page painting. |
575 const char kEnablePerTilePainting[] = "enable-per-tile-painting"; | 575 const char kEnablePerTilePainting[] = "enable-per-tile-painting"; |
576 | 576 |
577 // Disables the use of a 3D software rasterizer. | 577 // Disables the use of a 3D software rasterizer. |
578 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; | 578 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; |
579 | 579 |
580 } // namespace switches | 580 } // namespace switches |
OLD | NEW |