| 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 <vector> | 5 #include <vector> |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/time/time.h" | 10 #include "base/time/time.h" |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 EXPECT_EQ( | 309 EXPECT_EQ( |
| 310 "TouchMove GestureScrollUpdate", | 310 "TouchMove GestureScrollUpdate", |
| 311 ExpectedEvents()); | 311 ExpectedEvents()); |
| 312 MouseUp(400, 200); | 312 MouseUp(400, 200); |
| 313 EXPECT_EQ( | 313 EXPECT_EQ( |
| 314 "TouchEnd GestureScrollEnd", | 314 "TouchEnd GestureScrollEnd", |
| 315 ExpectedEvents()); | 315 ExpectedEvents()); |
| 316 } | 316 } |
| 317 | 317 |
| 318 } // namespace content | 318 } // namespace content |
| OLD | NEW |