| 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 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 
| 10 // have an effect. 0 disables MSAA. | 10 // have an effect. 0 disables MSAA. | 
| (...skipping 917 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 928 | 928 | 
| 929 // Disable the pull-to-refresh effect when vertically overscrolling content. | 929 // Disable the pull-to-refresh effect when vertically overscrolling content. | 
| 930 const char kDisablePullToRefreshEffect[]   = "disable-pull-to-refresh-effect"; | 930 const char kDisablePullToRefreshEffect[]   = "disable-pull-to-refresh-effect"; | 
| 931 | 931 | 
| 932 // Disable the locking feature of the screen orientation API. | 932 // Disable the locking feature of the screen orientation API. | 
| 933 const char kDisableScreenOrientationLock[]  = "disable-screen-orientation-lock"; | 933 const char kDisableScreenOrientationLock[]  = "disable-screen-orientation-lock"; | 
| 934 | 934 | 
| 935 // WebRTC is enabled by default on Android. | 935 // WebRTC is enabled by default on Android. | 
| 936 const char kDisableWebRTC[]                 = "disable-webrtc"; | 936 const char kDisableWebRTC[]                 = "disable-webrtc"; | 
| 937 | 937 | 
|  | 938 // Enable CursorAnchorInfo API that is added in Android 5.0. | 
|  | 939 const char kEnableCursorAnchorInfo[] = "enable-cursor-anchor-info"; | 
|  | 940 | 
| 938 // The telephony region (ISO country code) to use in phone number detection. | 941 // The telephony region (ISO country code) to use in phone number detection. | 
| 939 const char kNetworkCountryIso[] = "network-country-iso"; | 942 const char kNetworkCountryIso[] = "network-country-iso"; | 
| 940 | 943 | 
| 941 // Enables remote debug over HTTP on the specified socket name. | 944 // Enables remote debug over HTTP on the specified socket name. | 
| 942 const char kRemoteDebuggingSocketName[]     = "remote-debugging-socket-name"; | 945 const char kRemoteDebuggingSocketName[]     = "remote-debugging-socket-name"; | 
| 943 | 946 | 
| 944 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 947 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 
| 945 // Java debugger is attached. | 948 // Java debugger is attached. | 
| 946 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 949 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 
| 947 #endif | 950 #endif | 
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 996 // Windows Vista and later. | 999 // Windows Vista and later. | 
| 997 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1000 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 
| 998 #endif | 1001 #endif | 
| 999 | 1002 | 
| 1000 // Enables the use of NPAPI plugins. | 1003 // Enables the use of NPAPI plugins. | 
| 1001 const char kEnableNpapi[]                   = "enable-npapi"; | 1004 const char kEnableNpapi[]                   = "enable-npapi"; | 
| 1002 | 1005 | 
| 1003 // Don't dump stuff here, follow the same order as the header. | 1006 // Don't dump stuff here, follow the same order as the header. | 
| 1004 | 1007 | 
| 1005 }  // namespace switches | 1008 }  // namespace switches | 
| OLD | NEW | 
|---|