Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(288)

Side by Side Diff: content/public/common/content_switches.cc

Issue 140253005: Add touch scrolling modes experimental flags (DEPRECATED) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update for eager GR Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 863 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 const char kTestingFixedHttpPort[] = "testing-fixed-http-port"; 874 const char kTestingFixedHttpPort[] = "testing-fixed-http-port";
875 const char kTestingFixedHttpsPort[] = "testing-fixed-https-port"; 875 const char kTestingFixedHttpsPort[] = "testing-fixed-https-port";
876 876
877 // Runs the security test for the renderer sandbox. 877 // Runs the security test for the renderer sandbox.
878 const char kTestSandbox[] = "test-sandbox"; 878 const char kTestSandbox[] = "test-sandbox";
879 879
880 // Enable timeout-based touch event cancellation if a touch ack is delayed. 880 // Enable timeout-based touch event cancellation if a touch ack is delayed.
881 // If unspecified, touch timeout behavior will be disabled. 881 // If unspecified, touch timeout behavior will be disabled.
882 const char kTouchAckTimeoutDelayMs[] = "touch-ack-timeout-delay-ms"; 882 const char kTouchAckTimeoutDelayMs[] = "touch-ack-timeout-delay-ms";
883 883
884 const char kTouchScrollingMode[] = "touch-scrolling-mode";
885 const char kTouchScrollingModeTouchcancel[] = "touchcancel";
886 const char kTouchScrollingModeSyncTouchmove[] = "sync-touchmove";
887 const char kTouchScrollingModeAbsorbTouchmove[] = "absorb-touchmove";
888
884 // Causes TRACE_EVENT flags to be recorded beginning with shutdown. Optionally, 889 // Causes TRACE_EVENT flags to be recorded beginning with shutdown. Optionally,
885 // can specify the specific trace categories to include (e.g. 890 // can specify the specific trace categories to include (e.g.
886 // --trace-shutdown=base,net) otherwise, all events are recorded. 891 // --trace-shutdown=base,net) otherwise, all events are recorded.
887 // --trace-shutdown-file can be used to control where the trace log gets stored 892 // --trace-shutdown-file can be used to control where the trace log gets stored
888 // to since there is otherwise no way to access the result. 893 // to since there is otherwise no way to access the result.
889 const char kTraceShutdown[] = "trace-shutdown"; 894 const char kTraceShutdown[] = "trace-shutdown";
890 895
891 // If supplied, sets the file which shutdown tracing will be stored into, if 896 // If supplied, sets the file which shutdown tracing will be stored into, if
892 // omitted the default will be used "chrometrace.log" in the current directory. 897 // omitted the default will be used "chrometrace.log" in the current directory.
893 // Has no effect unless --trace-shutdown is also supplied. 898 // Has no effect unless --trace-shutdown is also supplied.
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
1066 #endif 1071 #endif
1067 1072
1068 #if defined(OS_POSIX) 1073 #if defined(OS_POSIX)
1069 // Causes the child processes to cleanly exit via calling exit(). 1074 // Causes the child processes to cleanly exit via calling exit().
1070 const char kChildCleanExit[] = "child-clean-exit"; 1075 const char kChildCleanExit[] = "child-clean-exit";
1071 #endif 1076 #endif
1072 1077
1073 // Don't dump stuff here, follow the same order as the header. 1078 // Don't dump stuff here, follow the same order as the header.
1074 1079
1075 } // namespace switches 1080 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698