| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 | 97 |
| 98 // Blacklist the GPU for WebGL. | 98 // Blacklist the GPU for WebGL. |
| 99 const char kBlacklistWebGL[] = "blacklist-webgl"; | 99 const char kBlacklistWebGL[] = "blacklist-webgl"; |
| 100 | 100 |
| 101 // Disable FileSystem API. | 101 // Disable FileSystem API. |
| 102 const char kDisableFileSystem[] = "disable-file-system"; | 102 const char kDisableFileSystem[] = "disable-file-system"; |
| 103 | 103 |
| 104 // Disable 3D inside of flapper. | 104 // Disable 3D inside of flapper. |
| 105 const char kDisableFlash3d[] = "disable-flash-3d"; | 105 const char kDisableFlash3d[] = "disable-flash-3d"; |
| 106 | 106 |
| 107 // Disable using 3D to present fullscreen flash | |
| 108 const char kDisableFlashFullscreen3d[] = "disable-flash-fullscreen-3d"; | |
| 109 | |
| 110 // Disable Stage3D inside of flapper. | 107 // Disable Stage3D inside of flapper. |
| 111 const char kDisableFlashStage3d[] = "disable-flash-stage3d"; | 108 const char kDisableFlashStage3d[] = "disable-flash-stage3d"; |
| 112 | 109 |
| 113 // Suppresses support for the Geolocation javascript API. | 110 // Suppresses support for the Geolocation javascript API. |
| 114 const char kDisableGeolocation[] = "disable-geolocation"; | 111 const char kDisableGeolocation[] = "disable-geolocation"; |
| 115 | 112 |
| 116 // Disable GL multisampling. | 113 // Disable GL multisampling. |
| 117 const char kDisableGLMultisampling[] = "disable-gl-multisampling"; | 114 const char kDisableGLMultisampling[] = "disable-gl-multisampling"; |
| 118 | 115 |
| 119 // Do not launch the GPU process shortly after browser process launch. Instead | 116 // Do not launch the GPU process shortly after browser process launch. Instead |
| (...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 851 const char kOverscrollHistoryNavigation[] = | 848 const char kOverscrollHistoryNavigation[] = |
| 852 "overscroll-history-navigation"; | 849 "overscroll-history-navigation"; |
| 853 | 850 |
| 854 // Forward overscroll event data from the renderer to the browser. | 851 // Forward overscroll event data from the renderer to the browser. |
| 855 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; | 852 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; |
| 856 | 853 |
| 857 // Enables 'image/webp' accept header for image requests. | 854 // Enables 'image/webp' accept header for image requests. |
| 858 const char kEnableWebPInAcceptHeader[] = "enable-webp-in-accept-header"; | 855 const char kEnableWebPInAcceptHeader[] = "enable-webp-in-accept-header"; |
| 859 | 856 |
| 860 } // namespace switches | 857 } // namespace switches |
| OLD | NEW |