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

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

Issue 156783006: Consuming a touch move prevents only the next scroll update. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 866 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 const char kTestingFixedHttpPort[] = "testing-fixed-http-port"; 877 const char kTestingFixedHttpPort[] = "testing-fixed-http-port";
878 const char kTestingFixedHttpsPort[] = "testing-fixed-https-port"; 878 const char kTestingFixedHttpsPort[] = "testing-fixed-https-port";
879 879
880 // Runs the security test for the renderer sandbox. 880 // Runs the security test for the renderer sandbox.
881 const char kTestSandbox[] = "test-sandbox"; 881 const char kTestSandbox[] = "test-sandbox";
882 882
883 // Enable timeout-based touch event cancellation if a touch ack is delayed. 883 // Enable timeout-based touch event cancellation if a touch ack is delayed.
884 // If unspecified, touch timeout behavior will be disabled. 884 // If unspecified, touch timeout behavior will be disabled.
885 const char kTouchAckTimeoutDelayMs[] = "touch-ack-timeout-delay-ms"; 885 const char kTouchAckTimeoutDelayMs[] = "touch-ack-timeout-delay-ms";
886 886
887 const char kTouchScrollingMode[] = "touch-scrolling-mode";
888 const char kTouchScrollingModeTouchcancel[] = "touchcancel";
889 const char kTouchScrollingModeSyncTouchmove[] = "sync-touchmove";
890 const char kTouchScrollingModeAbsorbTouchmove[] = "absorb-touchmove";
891
887 // Causes TRACE_EVENT flags to be recorded beginning with shutdown. Optionally, 892 // Causes TRACE_EVENT flags to be recorded beginning with shutdown. Optionally,
888 // can specify the specific trace categories to include (e.g. 893 // can specify the specific trace categories to include (e.g.
889 // --trace-shutdown=base,net) otherwise, all events are recorded. 894 // --trace-shutdown=base,net) otherwise, all events are recorded.
890 // --trace-shutdown-file can be used to control where the trace log gets stored 895 // --trace-shutdown-file can be used to control where the trace log gets stored
891 // to since there is otherwise no way to access the result. 896 // to since there is otherwise no way to access the result.
892 const char kTraceShutdown[] = "trace-shutdown"; 897 const char kTraceShutdown[] = "trace-shutdown";
893 898
894 // If supplied, sets the file which shutdown tracing will be stored into, if 899 // If supplied, sets the file which shutdown tracing will be stored into, if
895 // omitted the default will be used "chrometrace.log" in the current directory. 900 // omitted the default will be used "chrometrace.log" in the current directory.
896 // Has no effect unless --trace-shutdown is also supplied. 901 // Has no effect unless --trace-shutdown is also supplied.
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698