| 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 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 // interval. Please see SetupStunProbeTrial in | 910 // interval. Please see SetupStunProbeTrial in |
| 911 // chrome_browser_field_trials_desktop.cc for more detail. | 911 // chrome_browser_field_trials_desktop.cc for more detail. |
| 912 const char kWebRtcStunProbeTrialParameter[] = "webrtc-stun-probe-trial"; | 912 const char kWebRtcStunProbeTrialParameter[] = "webrtc-stun-probe-trial"; |
| 913 | 913 |
| 914 // Override the maximum framerate as can be specified in calls to getUserMedia. | 914 // Override the maximum framerate as can be specified in calls to getUserMedia. |
| 915 // This flag expects a value. Example: --max-gum-fps=17.5 | 915 // This flag expects a value. Example: --max-gum-fps=17.5 |
| 916 const char kWebRtcMaxCaptureFramerate[] = "max-gum-fps"; | 916 const char kWebRtcMaxCaptureFramerate[] = "max-gum-fps"; |
| 917 #endif | 917 #endif |
| 918 | 918 |
| 919 #if defined(OS_ANDROID) | 919 #if defined(OS_ANDROID) |
| 920 // Use Chrome's async input code path for synchronous compositing. Requires |
| 921 // IPC-based synchronous compositing. This switch is temporary while feature |
| 922 // is under development, which is tracked in crbug.com/545628. |
| 923 const char kAsyncInputForSyncCompositor[] = "async-input-for-sync-compositor"; |
| 924 |
| 920 // Disable external animation system for Android compositor. | 925 // Disable external animation system for Android compositor. |
| 921 // See also kDisableCompositorAnimationTimelines for renderer compositors. | 926 // See also kDisableCompositorAnimationTimelines for renderer compositors. |
| 922 const char kDisableAndroidCompositorAnimationTimelines[] = | 927 const char kDisableAndroidCompositorAnimationTimelines[] = |
| 923 "disable-android-compositor-animation-timelines"; | 928 "disable-android-compositor-animation-timelines"; |
| 924 | 929 |
| 925 // Disable overscroll edge effects like those found in Android views. | 930 // Disable overscroll edge effects like those found in Android views. |
| 926 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; | 931 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; |
| 927 | 932 |
| 928 // Disable the pull-to-refresh effect when vertically overscrolling content. | 933 // Disable the pull-to-refresh effect when vertically overscrolling content. |
| 929 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; | 934 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1045 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1050 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1046 | 1051 |
| 1047 // Enables the exporting of the tracing events to ETW. This is only supported on | 1052 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1048 // Windows Vista and later. | 1053 // Windows Vista and later. |
| 1049 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1054 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1050 #endif | 1055 #endif |
| 1051 | 1056 |
| 1052 // Don't dump stuff here, follow the same order as the header. | 1057 // Don't dump stuff here, follow the same order as the header. |
| 1053 | 1058 |
| 1054 } // namespace switches | 1059 } // namespace switches |
| OLD | NEW |