| 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 929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; | 940 const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; |
| 941 | 941 |
| 942 // Disable the locking feature of the screen orientation API. | 942 // Disable the locking feature of the screen orientation API. |
| 943 const char kDisableScreenOrientationLock[] = "disable-screen-orientation-lock"; | 943 const char kDisableScreenOrientationLock[] = "disable-screen-orientation-lock"; |
| 944 | 944 |
| 945 // Enable inverting of selection handles so that they are not clipped by the | 945 // Enable inverting of selection handles so that they are not clipped by the |
| 946 // viewport boundaries. | 946 // viewport boundaries. |
| 947 const char kEnableAdaptiveSelectionHandleOrientation[] = | 947 const char kEnableAdaptiveSelectionHandleOrientation[] = |
| 948 "enable-adaptive-selection-handle-orientation"; | 948 "enable-adaptive-selection-handle-orientation"; |
| 949 | 949 |
| 950 // Enable content intent detection in the renderer. |
| 951 const char kEnableContentIntentDetection[] = |
| 952 "enable-content-intent-detection"; |
| 953 |
| 950 // Enable drag manipulation of longpress-triggered text selections. | 954 // Enable drag manipulation of longpress-triggered text selections. |
| 951 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; | 955 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; |
| 952 | 956 |
| 953 // The telephony region (ISO country code) to use in phone number detection. | 957 // The telephony region (ISO country code) to use in phone number detection. |
| 954 const char kNetworkCountryIso[] = "network-country-iso"; | 958 const char kNetworkCountryIso[] = "network-country-iso"; |
| 955 | 959 |
| 956 // When blink should declare a load "done" for the purpose of the | 960 // When blink should declare a load "done" for the purpose of the |
| 957 // progress bar. | 961 // progress bar. |
| 958 const char kProgressBarCompletion[] = "progress-bar-completion"; | 962 const char kProgressBarCompletion[] = "progress-bar-completion"; |
| 959 | 963 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1063 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1067 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1064 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1068 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1065 | 1069 |
| 1066 // Specifies the testcase used by the IPC fuzzer. | 1070 // Specifies the testcase used by the IPC fuzzer. |
| 1067 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1071 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1068 #endif | 1072 #endif |
| 1069 | 1073 |
| 1070 // Don't dump stuff here, follow the same order as the header. | 1074 // Don't dump stuff here, follow the same order as the header. |
| 1071 | 1075 |
| 1072 } // namespace switches | 1076 } // namespace switches |
| OLD | NEW |