| 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 965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 976 const char kEnableAdaptiveSelectionHandleOrientation[] = | 976 const char kEnableAdaptiveSelectionHandleOrientation[] = |
| 977 "enable-adaptive-selection-handle-orientation"; | 977 "enable-adaptive-selection-handle-orientation"; |
| 978 | 978 |
| 979 // Enable content intent detection in the renderer. | 979 // Enable content intent detection in the renderer. |
| 980 const char kEnableContentIntentDetection[] = | 980 const char kEnableContentIntentDetection[] = |
| 981 "enable-content-intent-detection"; | 981 "enable-content-intent-detection"; |
| 982 | 982 |
| 983 // Enable drag manipulation of longpress-triggered text selections. | 983 // Enable drag manipulation of longpress-triggered text selections. |
| 984 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; | 984 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; |
| 985 | 985 |
| 986 // Disable gesture requirement for media playback in the specified whitelist. |
| 987 const char kMediaPlaybackGestureWhitelistScope[] = |
| 988 "media-playback-gesture-whitelist-scope"; |
| 989 |
| 986 // The telephony region (ISO country code) to use in phone number detection. | 990 // The telephony region (ISO country code) to use in phone number detection. |
| 987 const char kNetworkCountryIso[] = "network-country-iso"; | 991 const char kNetworkCountryIso[] = "network-country-iso"; |
| 988 | 992 |
| 989 // When blink should declare a load "done" for the purpose of the | 993 // When blink should declare a load "done" for the purpose of the |
| 990 // progress bar. | 994 // progress bar. |
| 991 const char kProgressBarCompletion[] = "progress-bar-completion"; | 995 const char kProgressBarCompletion[] = "progress-bar-completion"; |
| 992 | 996 |
| 993 // Enables remote debug over HTTP on the specified socket name. | 997 // Enables remote debug over HTTP on the specified socket name. |
| 994 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 998 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
| 995 | 999 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1096 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1100 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1097 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1101 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1098 | 1102 |
| 1099 // Specifies the testcase used by the IPC fuzzer. | 1103 // Specifies the testcase used by the IPC fuzzer. |
| 1100 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1104 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1101 #endif | 1105 #endif |
| 1102 | 1106 |
| 1103 // Don't dump stuff here, follow the same order as the header. | 1107 // Don't dump stuff here, follow the same order as the header. |
| 1104 | 1108 |
| 1105 } // namespace switches | 1109 } // namespace switches |
| OLD | NEW |