| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
| 7 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| (...skipping 898 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 909 // interval. Please see SetupStunProbeTrial in | 909 // interval. Please see SetupStunProbeTrial in |
| 910 // chrome_browser_field_trials_desktop.cc for more detail. | 910 // chrome_browser_field_trials_desktop.cc for more detail. |
| 911 const char kWebRtcStunProbeTrialParameter[] = "webrtc-stun-probe-trial"; | 911 const char kWebRtcStunProbeTrialParameter[] = "webrtc-stun-probe-trial"; |
| 912 | 912 |
| 913 // Override the maximum framerate as can be specified in calls to getUserMedia. | 913 // Override the maximum framerate as can be specified in calls to getUserMedia. |
| 914 // This flag expects a value. Example: --max-gum-fps=17.5 | 914 // This flag expects a value. Example: --max-gum-fps=17.5 |
| 915 const char kWebRtcMaxCaptureFramerate[] = "max-gum-fps"; | 915 const char kWebRtcMaxCaptureFramerate[] = "max-gum-fps"; |
| 916 #endif | 916 #endif |
| 917 | 917 |
| 918 #if defined(OS_ANDROID) | 918 #if defined(OS_ANDROID) |
| 919 // Disable external animation system for Android compositor. | |
| 920 // See also kDisableCompositorAnimationTimelines for renderer compositors. | |
| 921 const char kDisableAndroidCompositorAnimationTimelines[] = | |
| 922 "disable-android-compositor-animation-timelines"; | |
| 923 | |
| 924 // Disable overscroll edge effects like those found in Android views. | 919 // Disable overscroll edge effects like those found in Android views. |
| 925 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; | 920 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; |
| 926 | 921 |
| 927 // Disable the pull-to-refresh effect when vertically overscrolling content. | 922 // Disable the pull-to-refresh effect when vertically overscrolling content. |
| 928 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; | 923 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; |
| 929 | 924 |
| 930 // Disable the locking feature of the screen orientation API. | 925 // Disable the locking feature of the screen orientation API. |
| 931 const char kDisableScreenOrientationLock[] = "disable-screen-orientation-lock"; | 926 const char kDisableScreenOrientationLock[] = "disable-screen-orientation-lock"; |
| 932 | 927 |
| 933 // Enable inverting of selection handles so that they are not clipped by the | 928 // Enable inverting of selection handles so that they are not clipped by the |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1038 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1033 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1039 | 1034 |
| 1040 // Enables the exporting of the tracing events to ETW. This is only supported on | 1035 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1041 // Windows Vista and later. | 1036 // Windows Vista and later. |
| 1042 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1037 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1043 #endif | 1038 #endif |
| 1044 | 1039 |
| 1045 // Don't dump stuff here, follow the same order as the header. | 1040 // Don't dump stuff here, follow the same order as the header. |
| 1046 | 1041 |
| 1047 } // namespace switches | 1042 } // namespace switches |
| OLD | NEW |