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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 | 158 |
159 // Enables WebKit accessibility within the renderer process. | 159 // Enables WebKit accessibility within the renderer process. |
160 const char kEnableAccessibility[] = "enable-accessibility"; | 160 const char kEnableAccessibility[] = "enable-accessibility"; |
161 | 161 |
162 // Enables the benchmarking extensions. | 162 // Enables the benchmarking extensions. |
163 const char kEnableBenchmarking[] = "enable-benchmarking"; | 163 const char kEnableBenchmarking[] = "enable-benchmarking"; |
164 | 164 |
165 // Enables device motion events. | 165 // Enables device motion events. |
166 const char kEnableDeviceMotion[] = "enable-device-motion"; | 166 const char kEnableDeviceMotion[] = "enable-device-motion"; |
167 | 167 |
| 168 // Enable the JavaScript Full Screen API. |
| 169 const char kEnableFullScreen[] = "enable-fullscreen"; |
| 170 |
168 // Enable the GPU plugin and Pepper 3D rendering. | 171 // Enable the GPU plugin and Pepper 3D rendering. |
169 const char kEnableGPUPlugin[] = "enable-gpu-plugin"; | 172 const char kEnableGPUPlugin[] = "enable-gpu-plugin"; |
170 | 173 |
171 // Force logging to be enabled. Logging is disabled by default in release | 174 // Force logging to be enabled. Logging is disabled by default in release |
172 // builds. | 175 // builds. |
173 const char kEnableLogging[] = "enable-logging"; | 176 const char kEnableLogging[] = "enable-logging"; |
174 | 177 |
175 // Enable media stream in WebKit. | 178 // Enable media stream in WebKit. |
176 // http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#mediastr
eam | 179 // http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#mediastr
eam |
177 const char kEnableMediaStream[] = "enable-media-stream"; | 180 const char kEnableMediaStream[] = "enable-media-stream"; |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
470 // The same as kAuditHandles except all handles are enumerated. | 473 // The same as kAuditHandles except all handles are enumerated. |
471 const char kAuditAllHandles[] = "enable-handle-auditing-all"; | 474 const char kAuditAllHandles[] = "enable-handle-auditing-all"; |
472 #endif | 475 #endif |
473 | 476 |
474 #if !defined(OFFICIAL_BUILD) | 477 #if !defined(OFFICIAL_BUILD) |
475 // Causes the renderer process to throw an assertion on launch. | 478 // Causes the renderer process to throw an assertion on launch. |
476 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; | 479 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; |
477 #endif | 480 #endif |
478 | 481 |
479 } // namespace switches | 482 } // namespace switches |
OLD | NEW |