| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/common/content_switches.h" | 5 #include "content/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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 const char kEnableStatsTable[] = "enable-stats-table"; | 198 const char kEnableStatsTable[] = "enable-stats-table"; |
| 199 | 199 |
| 200 // Enables support for fullscreen video. Current implementation is | 200 // Enables support for fullscreen video. Current implementation is |
| 201 // incomplete and this flag is used for development and testing. | 201 // incomplete and this flag is used for development and testing. |
| 202 const char kEnableVideoFullscreen[] = "enable-video-fullscreen"; | 202 const char kEnableVideoFullscreen[] = "enable-video-fullscreen"; |
| 203 | 203 |
| 204 // Enables video logging where video elements log playback performance data to | 204 // Enables video logging where video elements log playback performance data to |
| 205 // the debug log. | 205 // the debug log. |
| 206 const char kEnableVideoLogging[] = "enable-video-logging"; | 206 const char kEnableVideoLogging[] = "enable-video-logging"; |
| 207 | 207 |
| 208 // Enable Web Intents. |
| 209 const char kEnableWebIntents[] = "enable-web-intents"; |
| 210 |
| 208 // Enables experimental features for the geolocation API. | 211 // Enables experimental features for the geolocation API. |
| 209 // Current features: | 212 // Current features: |
| 210 // - CoreLocation support for Mac OS X 10.6 | 213 // - CoreLocation support for Mac OS X 10.6 |
| 211 // - Gateway location for Linux and Windows | 214 // - Gateway location for Linux and Windows |
| 212 // - Location platform support for Windows 7 | 215 // - Location platform support for Windows 7 |
| 213 const char kExperimentalLocationFeatures[] = "experimental-location-features"; | 216 const char kExperimentalLocationFeatures[] = "experimental-location-features"; |
| 214 | 217 |
| 215 // Load NPAPI plugins from the specified directory. | 218 // Load NPAPI plugins from the specified directory. |
| 216 const char kExtraPluginDir[] = "extra-plugin-dir"; | 219 const char kExtraPluginDir[] = "extra-plugin-dir"; |
| 217 | 220 |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 // Specify the amount the trackpad should scroll by. | 476 // Specify the amount the trackpad should scroll by. |
| 474 const char kScrollPixels[] = "scroll-pixels"; | 477 const char kScrollPixels[] = "scroll-pixels"; |
| 475 #endif | 478 #endif |
| 476 | 479 |
| 477 #if !defined(OFFICIAL_BUILD) | 480 #if !defined(OFFICIAL_BUILD) |
| 478 // Causes the renderer process to throw an assertion on launch. | 481 // Causes the renderer process to throw an assertion on launch. |
| 479 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; | 482 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; |
| 480 #endif | 483 #endif |
| 481 | 484 |
| 482 } // namespace switches | 485 } // namespace switches |
| OLD | NEW |