OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <utility> | 5 #include <utility> |
6 | 6 |
7 #include "base/auto_reset.h" | 7 #include "base/auto_reset.h" |
8 #include "base/bind.h" | 8 #include "base/bind.h" |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "content/common/input/synthetic_smooth_scroll_gesture_params.h" | 23 #include "content/common/input/synthetic_smooth_scroll_gesture_params.h" |
24 #include "content/common/input_messages.h" | 24 #include "content/common/input_messages.h" |
25 #include "content/public/browser/render_view_host.h" | 25 #include "content/public/browser/render_view_host.h" |
26 #include "content/public/browser/render_widget_host_view.h" | 26 #include "content/public/browser/render_widget_host_view.h" |
27 #include "content/public/common/content_switches.h" | 27 #include "content/public/common/content_switches.h" |
28 #include "content/public/test/browser_test_utils.h" | 28 #include "content/public/test/browser_test_utils.h" |
29 #include "content/public/test/content_browser_test.h" | 29 #include "content/public/test/content_browser_test.h" |
30 #include "content/public/test/content_browser_test_utils.h" | 30 #include "content/public/test/content_browser_test_utils.h" |
31 #include "content/public/test/test_utils.h" | 31 #include "content/public/test/test_utils.h" |
32 #include "content/shell/browser/shell.h" | 32 #include "content/shell/browser/shell.h" |
33 #include "third_party/WebKit/public/web/WebInputEvent.h" | 33 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
34 #include "ui/events/event_switches.h" | 34 #include "ui/events/event_switches.h" |
35 #include "ui/events/latency_info.h" | 35 #include "ui/events/latency_info.h" |
36 | 36 |
37 using blink::WebInputEvent; | 37 using blink::WebInputEvent; |
38 | 38 |
39 namespace { | 39 namespace { |
40 | 40 |
41 const char kTouchActionDataURL[] = | 41 const char kTouchActionDataURL[] = |
42 "data:text/html;charset=utf-8," | 42 "data:text/html;charset=utf-8," |
43 "<!DOCTYPE html>" | 43 "<!DOCTYPE html>" |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 DoTouchScroll(gfx::Point(50, 150), gfx::Vector2d(0, 45), false); | 219 DoTouchScroll(gfx::Point(50, 150), gfx::Vector2d(0, 45), false); |
220 EXPECT_FALSE(scrolled); | 220 EXPECT_FALSE(scrolled); |
221 | 221 |
222 EXPECT_EQ(1, ExecuteScriptAndExtractInt("eventCounts.touchstart")); | 222 EXPECT_EQ(1, ExecuteScriptAndExtractInt("eventCounts.touchstart")); |
223 EXPECT_GE(ExecuteScriptAndExtractInt("eventCounts.touchmove"), 1); | 223 EXPECT_GE(ExecuteScriptAndExtractInt("eventCounts.touchmove"), 1); |
224 EXPECT_EQ(1, ExecuteScriptAndExtractInt("eventCounts.touchend")); | 224 EXPECT_EQ(1, ExecuteScriptAndExtractInt("eventCounts.touchend")); |
225 EXPECT_EQ(0, ExecuteScriptAndExtractInt("eventCounts.touchcancel")); | 225 EXPECT_EQ(0, ExecuteScriptAndExtractInt("eventCounts.touchcancel")); |
226 } | 226 } |
227 | 227 |
228 } // namespace content | 228 } // namespace content |
OLD | NEW |