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 "content/public/common/content_switches.h" | 5 #include "content/public/common/content_switches.h" |
6 | 6 |
7 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
10 // have an effect. 0 disables MSAA. | 10 // have an effect. 0 disables MSAA. |
(...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
849 // Upscale defaults to "best". | 849 // Upscale defaults to "best". |
850 const char kTabCaptureUpscaleQuality[] = "tab-capture-upscale-quality"; | 850 const char kTabCaptureUpscaleQuality[] = "tab-capture-upscale-quality"; |
851 | 851 |
852 // Allows for forcing socket connections to http/https to use fixed ports. | 852 // Allows for forcing socket connections to http/https to use fixed ports. |
853 const char kTestingFixedHttpPort[] = "testing-fixed-http-port"; | 853 const char kTestingFixedHttpPort[] = "testing-fixed-http-port"; |
854 const char kTestingFixedHttpsPort[] = "testing-fixed-https-port"; | 854 const char kTestingFixedHttpsPort[] = "testing-fixed-https-port"; |
855 | 855 |
856 // Runs the security test for the renderer sandbox. | 856 // Runs the security test for the renderer sandbox. |
857 const char kTestSandbox[] = "test-sandbox"; | 857 const char kTestSandbox[] = "test-sandbox"; |
858 | 858 |
| 859 // Enable timeout-based touch event cancellation if a touch ack is delayed. |
| 860 // If unspecified, touch timeout behavior will be disabled. |
| 861 const char kTouchAckTimeoutDelayMs[] = "touch-ack-timeout-delay-ms"; |
| 862 |
859 // Causes TRACE_EVENT flags to be recorded beginning with shutdown. Optionally, | 863 // Causes TRACE_EVENT flags to be recorded beginning with shutdown. Optionally, |
860 // can specify the specific trace categories to include (e.g. | 864 // can specify the specific trace categories to include (e.g. |
861 // --trace-shutdown=base,net) otherwise, all events are recorded. | 865 // --trace-shutdown=base,net) otherwise, all events are recorded. |
862 // --trace-shutdown-file can be used to control where the trace log gets stored | 866 // --trace-shutdown-file can be used to control where the trace log gets stored |
863 // to since there is otherwise no way to access the result. | 867 // to since there is otherwise no way to access the result. |
864 const char kTraceShutdown[] = "trace-shutdown"; | 868 const char kTraceShutdown[] = "trace-shutdown"; |
865 | 869 |
866 // If supplied, sets the file which shutdown tracing will be stored into, if | 870 // If supplied, sets the file which shutdown tracing will be stored into, if |
867 // omitted the default will be used "chrometrace.log" in the current directory. | 871 // omitted the default will be used "chrometrace.log" in the current directory. |
868 // Has no effect unless --trace-shutdown is also supplied. | 872 // Has no effect unless --trace-shutdown is also supplied. |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1038 #endif | 1042 #endif |
1039 | 1043 |
1040 #if defined(OS_POSIX) | 1044 #if defined(OS_POSIX) |
1041 // Causes the child processes to cleanly exit via calling exit(). | 1045 // Causes the child processes to cleanly exit via calling exit(). |
1042 const char kChildCleanExit[] = "child-clean-exit"; | 1046 const char kChildCleanExit[] = "child-clean-exit"; |
1043 #endif | 1047 #endif |
1044 | 1048 |
1045 // Don't dump stuff here, follow the same order as the header. | 1049 // Don't dump stuff here, follow the same order as the header. |
1046 | 1050 |
1047 } // namespace switches | 1051 } // namespace switches |
OLD | NEW |