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 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 859 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
870 const char kTestingFixedHttpPort[] = "testing-fixed-http-port"; | 870 const char kTestingFixedHttpPort[] = "testing-fixed-http-port"; |
871 const char kTestingFixedHttpsPort[] = "testing-fixed-https-port"; | 871 const char kTestingFixedHttpsPort[] = "testing-fixed-https-port"; |
872 | 872 |
873 // Runs the security test for the renderer sandbox. | 873 // Runs the security test for the renderer sandbox. |
874 const char kTestSandbox[] = "test-sandbox"; | 874 const char kTestSandbox[] = "test-sandbox"; |
875 | 875 |
876 // Enable timeout-based touch event cancellation if a touch ack is delayed. | 876 // Enable timeout-based touch event cancellation if a touch ack is delayed. |
877 // If unspecified, touch timeout behavior will be disabled. | 877 // If unspecified, touch timeout behavior will be disabled. |
878 const char kTouchAckTimeoutDelayMs[] = "touch-ack-timeout-delay-ms"; | 878 const char kTouchAckTimeoutDelayMs[] = "touch-ack-timeout-delay-ms"; |
879 | 879 |
| 880 const char kTouchScrollingMode[] = "touch-scrolling-mode"; |
| 881 const char kTouchScrollingModeTouchcancel[] = "touchcancel"; |
| 882 const char kTouchScrollingModeSyncTouchmove[] = "sync-touchmove"; |
| 883 const char kTouchScrollingModeAbsorbTouchmove[] = "absorb-touchmove"; |
| 884 |
880 // Causes TRACE_EVENT flags to be recorded beginning with shutdown. Optionally, | 885 // Causes TRACE_EVENT flags to be recorded beginning with shutdown. Optionally, |
881 // can specify the specific trace categories to include (e.g. | 886 // can specify the specific trace categories to include (e.g. |
882 // --trace-shutdown=base,net) otherwise, all events are recorded. | 887 // --trace-shutdown=base,net) otherwise, all events are recorded. |
883 // --trace-shutdown-file can be used to control where the trace log gets stored | 888 // --trace-shutdown-file can be used to control where the trace log gets stored |
884 // to since there is otherwise no way to access the result. | 889 // to since there is otherwise no way to access the result. |
885 const char kTraceShutdown[] = "trace-shutdown"; | 890 const char kTraceShutdown[] = "trace-shutdown"; |
886 | 891 |
887 // If supplied, sets the file which shutdown tracing will be stored into, if | 892 // If supplied, sets the file which shutdown tracing will be stored into, if |
888 // omitted the default will be used "chrometrace.log" in the current directory. | 893 // omitted the default will be used "chrometrace.log" in the current directory. |
889 // Has no effect unless --trace-shutdown is also supplied. | 894 // Has no effect unless --trace-shutdown is also supplied. |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1062 #endif | 1067 #endif |
1063 | 1068 |
1064 #if defined(OS_POSIX) | 1069 #if defined(OS_POSIX) |
1065 // Causes the child processes to cleanly exit via calling exit(). | 1070 // Causes the child processes to cleanly exit via calling exit(). |
1066 const char kChildCleanExit[] = "child-clean-exit"; | 1071 const char kChildCleanExit[] = "child-clean-exit"; |
1067 #endif | 1072 #endif |
1068 | 1073 |
1069 // 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. |
1070 | 1075 |
1071 } // namespace switches | 1076 } // namespace switches |
OLD | NEW |