| 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 910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 921 const char kNetworkCountryIso[] = "network-country-iso"; | 921 const char kNetworkCountryIso[] = "network-country-iso"; |
| 922 | 922 |
| 923 // Enables remote debug over HTTP on the specified socket name. | 923 // Enables remote debug over HTTP on the specified socket name. |
| 924 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 924 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 925 | 925 |
| 926 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 926 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
| 927 // Java debugger is attached. | 927 // Java debugger is attached. |
| 928 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 928 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
| 929 #endif | 929 #endif |
| 930 | 930 |
| 931 // Enable the aggressive flushing of DOM Storage to minimize data loss. |
| 932 const char kEnableAggressiveDOMStorageFlushing[] = |
| 933 "enable-aggressive-domstorage-flushing"; |
| 934 |
| 931 // Disable web audio API. | 935 // Disable web audio API. |
| 932 const char kDisableWebAudio[] = "disable-webaudio"; | 936 const char kDisableWebAudio[] = "disable-webaudio"; |
| 933 | 937 |
| 934 #if defined(OS_CHROMEOS) | 938 #if defined(OS_CHROMEOS) |
| 935 // Disables panel fitting (used for mirror mode). | 939 // Disables panel fitting (used for mirror mode). |
| 936 const char kDisablePanelFitting[] = "disable-panel-fitting"; | 940 const char kDisablePanelFitting[] = "disable-panel-fitting"; |
| 937 | 941 |
| 938 // Disables VA-API accelerated video encode. | 942 // Disables VA-API accelerated video encode. |
| 939 const char kDisableVaapiAcceleratedVideoEncode[] = | 943 const char kDisableVaapiAcceleratedVideoEncode[] = |
| 940 "disable-vaapi-accelerated-video-encode"; | 944 "disable-vaapi-accelerated-video-encode"; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 974 // clashes between different instances of Chrome. | 978 // clashes between different instances of Chrome. |
| 975 const char kFontCacheSharedMemSuffix[] = "font-cache-shared-mem-suffix"; | 979 const char kFontCacheSharedMemSuffix[] = "font-cache-shared-mem-suffix"; |
| 976 #endif | 980 #endif |
| 977 | 981 |
| 978 // Enables the use of NPAPI plugins. | 982 // Enables the use of NPAPI plugins. |
| 979 const char kEnableNpapi[] = "enable-npapi"; | 983 const char kEnableNpapi[] = "enable-npapi"; |
| 980 | 984 |
| 981 // Don't dump stuff here, follow the same order as the header. | 985 // Don't dump stuff here, follow the same order as the header. |
| 982 | 986 |
| 983 } // namespace switches | 987 } // namespace switches |
| OLD | NEW |