| 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 13 matching lines...) Expand all Loading... |
| 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/platform/WebInputEvent.h" | 33 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
| 34 #include "ui/events/latency_info.h" | 34 #include "ui/latency/latency_info.h" |
| 35 | 35 |
| 36 using blink::WebInputEvent; | 36 using blink::WebInputEvent; |
| 37 | 37 |
| 38 namespace { | 38 namespace { |
| 39 | 39 |
| 40 const char kTouchActionDataURL[] = | 40 const char kTouchActionDataURL[] = |
| 41 "data:text/html;charset=utf-8," | 41 "data:text/html;charset=utf-8," |
| 42 "<!DOCTYPE html>" | 42 "<!DOCTYPE html>" |
| 43 "<meta name='viewport' content='width=device-width'/>" | 43 "<meta name='viewport' content='width=device-width'/>" |
| 44 "<style>" | 44 "<style>" |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 DoTouchScroll(gfx::Point(50, 150), gfx::Vector2d(0, 45), false); | 218 DoTouchScroll(gfx::Point(50, 150), gfx::Vector2d(0, 45), false); |
| 219 EXPECT_FALSE(scrolled); | 219 EXPECT_FALSE(scrolled); |
| 220 | 220 |
| 221 EXPECT_EQ(1, ExecuteScriptAndExtractInt("eventCounts.touchstart")); | 221 EXPECT_EQ(1, ExecuteScriptAndExtractInt("eventCounts.touchstart")); |
| 222 EXPECT_GE(ExecuteScriptAndExtractInt("eventCounts.touchmove"), 1); | 222 EXPECT_GE(ExecuteScriptAndExtractInt("eventCounts.touchmove"), 1); |
| 223 EXPECT_EQ(1, ExecuteScriptAndExtractInt("eventCounts.touchend")); | 223 EXPECT_EQ(1, ExecuteScriptAndExtractInt("eventCounts.touchend")); |
| 224 EXPECT_EQ(0, ExecuteScriptAndExtractInt("eventCounts.touchcancel")); | 224 EXPECT_EQ(0, ExecuteScriptAndExtractInt("eventCounts.touchcancel")); |
| 225 } | 225 } |
| 226 | 226 |
| 227 } // namespace content | 227 } // namespace content |
| OLD | NEW |