| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 | 278 |
| 279 // Enables support for fullscreen video. Current implementation is | 279 // Enables support for fullscreen video. Current implementation is |
| 280 // incomplete and this flag is used for development and testing. | 280 // incomplete and this flag is used for development and testing. |
| 281 const char kEnableVideoFullscreen[] = "enable-video-fullscreen"; | 281 const char kEnableVideoFullscreen[] = "enable-video-fullscreen"; |
| 282 | 282 |
| 283 // Enables support for video tracks. Current implementation is | 283 // Enables support for video tracks. Current implementation is |
| 284 // incomplete and this flag is used for development and testing. | 284 // incomplete and this flag is used for development and testing. |
| 285 const char kEnableVideoTrack[] = "enable-video-track"; | 285 const char kEnableVideoTrack[] = "enable-video-track"; |
| 286 | 286 |
| 287 // Enable Web Intents. | 287 // Enable Web Intents. |
| 288 const char kDisableWebIntents[] = "disable-web-intents"; | 288 const char kEnableWebIntents[] = "enable-web-intents"; |
| 289 | 289 |
| 290 // Enables experimental features for the geolocation API. | 290 // Enables experimental features for the geolocation API. |
| 291 // Current features: | 291 // Current features: |
| 292 // - CoreLocation support for Mac OS X 10.6 | 292 // - CoreLocation support for Mac OS X 10.6 |
| 293 // - Gateway location for Linux and Windows | 293 // - Gateway location for Linux and Windows |
| 294 // - Location platform support for Windows 7 | 294 // - Location platform support for Windows 7 |
| 295 const char kExperimentalLocationFeatures[] = "experimental-location-features"; | 295 const char kExperimentalLocationFeatures[] = "experimental-location-features"; |
| 296 | 296 |
| 297 // Load NPAPI plugins from the specified directory. | 297 // Load NPAPI plugins from the specified directory. |
| 298 const char kExtraPluginDir[] = "extra-plugin-dir"; | 298 const char kExtraPluginDir[] = "extra-plugin-dir"; |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; | 562 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; |
| 563 #endif | 563 #endif |
| 564 | 564 |
| 565 // Enable per-tile page painting. | 565 // Enable per-tile page painting. |
| 566 const char kEnablePerTilePainting[] = "enable-per-tile-painting"; | 566 const char kEnablePerTilePainting[] = "enable-per-tile-painting"; |
| 567 | 567 |
| 568 // Disables the use of a 3D software rasterizer. | 568 // Disables the use of a 3D software rasterizer. |
| 569 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; | 569 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; |
| 570 | 570 |
| 571 } // namespace switches | 571 } // namespace switches |
| OLD | NEW |