| 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 #include "media/media_features.h" | 7 #include "media/media_features.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 // interval. Please see SetupStunProbeTrial in | 940 // interval. Please see SetupStunProbeTrial in |
| 941 // chrome_browser_field_trials_desktop.cc for more detail. | 941 // chrome_browser_field_trials_desktop.cc for more detail. |
| 942 const char kWebRtcStunProbeTrialParameter[] = "webrtc-stun-probe-trial"; | 942 const char kWebRtcStunProbeTrialParameter[] = "webrtc-stun-probe-trial"; |
| 943 | 943 |
| 944 // Override the maximum framerate as can be specified in calls to getUserMedia. | 944 // Override the maximum framerate as can be specified in calls to getUserMedia. |
| 945 // This flag expects a value. Example: --max-gum-fps=17.5 | 945 // This flag expects a value. Example: --max-gum-fps=17.5 |
| 946 const char kWebRtcMaxCaptureFramerate[] = "max-gum-fps"; | 946 const char kWebRtcMaxCaptureFramerate[] = "max-gum-fps"; |
| 947 #endif | 947 #endif |
| 948 | 948 |
| 949 #if defined(OS_ANDROID) | 949 #if defined(OS_ANDROID) |
| 950 // Disable video fullscreen detection. |
| 951 const char kDisableVideoFullscreenDetection[] = |
| 952 "disable-video-fullscreen-detection"; |
| 953 |
| 950 // Disable Media Session API | 954 // Disable Media Session API |
| 951 const char kDisableMediaSessionAPI[] = "disable-media-session-api"; | 955 const char kDisableMediaSessionAPI[] = "disable-media-session-api"; |
| 952 | 956 |
| 953 // Disable overscroll edge effects like those found in Android views. | 957 // Disable overscroll edge effects like those found in Android views. |
| 954 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; | 958 const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; |
| 955 | 959 |
| 956 // Disable the pull-to-refresh effect when vertically overscrolling content. | 960 // Disable the pull-to-refresh effect when vertically overscrolling content. |
| 957 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; | 961 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; |
| 958 | 962 |
| 959 // Disable the locking feature of the screen orientation API. | 963 // Disable the locking feature of the screen orientation API. |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1084 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1088 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1085 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1089 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1086 | 1090 |
| 1087 // Specifies the testcase used by the IPC fuzzer. | 1091 // Specifies the testcase used by the IPC fuzzer. |
| 1088 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1092 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1089 #endif | 1093 #endif |
| 1090 | 1094 |
| 1091 // Don't dump stuff here, follow the same order as the header. | 1095 // Don't dump stuff here, follow the same order as the header. |
| 1092 | 1096 |
| 1093 } // namespace switches | 1097 } // namespace switches |
| OLD | NEW |