// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_EVENTS_TEST_MOTION_EVENT_TEST_UTILS_H_ #define UI_EVENTS_TEST_MOTION_EVENT_TEST_UTILS_H_ #include <stddef.h> #include <string> #include <vector> #include "base/time/time.h" #include "ui/events/velocity_tracker/motion_event_generic.h" #include "ui/gfx/geometry/point_f.h" namespace ui { namespace test { class MockMotionEvent : public MotionEventGeneric { … }; std::string ToString(const MotionEvent& event); } // namespace test } // namespace ui #endif // UI_EVENTS_TEST_MOTION_EVENT_TEST_UTILS_H_