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 926 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
937 // viewport boundaries. | 937 // viewport boundaries. |
938 const char kEnableAdaptiveSelectionHandleOrientation[] = | 938 const char kEnableAdaptiveSelectionHandleOrientation[] = |
939 "enable-adaptive-selection-handle-orientation"; | 939 "enable-adaptive-selection-handle-orientation"; |
940 | 940 |
941 // Enable drag manipulation of longpress-triggered text selections. | 941 // Enable drag manipulation of longpress-triggered text selections. |
942 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; | 942 const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; |
943 | 943 |
944 // The telephony region (ISO country code) to use in phone number detection. | 944 // The telephony region (ISO country code) to use in phone number detection. |
945 const char kNetworkCountryIso[] = "network-country-iso"; | 945 const char kNetworkCountryIso[] = "network-country-iso"; |
946 | 946 |
| 947 // When blink should declare a load "done" for the purpose of the |
| 948 // progress bar. |
| 949 const char kProgressBarCompletion[] = "progress-bar-completion"; |
| 950 |
947 // Enables remote debug over HTTP on the specified socket name. | 951 // Enables remote debug over HTTP on the specified socket name. |
948 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; | 952 const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; |
949 | 953 |
950 // Block ChildProcessMain thread of the renderer's ChildProcessService until a | 954 // Block ChildProcessMain thread of the renderer's ChildProcessService until a |
951 // Java debugger is attached. | 955 // Java debugger is attached. |
952 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; | 956 const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; |
953 | 957 |
954 // Enables overscrolling for the OSK on Android. | 958 // Enables overscrolling for the OSK on Android. |
955 const char kEnableOSKOverscroll[] = "enable-osk-overscroll"; | 959 const char kEnableOSKOverscroll[] = "enable-osk-overscroll"; |
956 | 960 |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1050 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1054 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1051 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1055 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1052 | 1056 |
1053 // Specifies the testcase used by the IPC fuzzer. | 1057 // Specifies the testcase used by the IPC fuzzer. |
1054 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1058 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1055 #endif | 1059 #endif |
1056 | 1060 |
1057 // Don't dump stuff here, follow the same order as the header. | 1061 // Don't dump stuff here, follow the same order as the header. |
1058 | 1062 |
1059 } // namespace switches | 1063 } // namespace switches |
OLD | NEW |