// Copyright 2018 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_TEST_EVENT_REWRITER_H_ #define UI_EVENTS_TEST_TEST_EVENT_REWRITER_H_ #include <memory> #include "ui/events/event_rewriter.h" namespace ui { namespace test { // Counts number of events observed. class TestEventRewriter : public ui::EventRewriter { … }; } // namespace test } // namespace ui #endif // UI_EVENTS_TEST_TEST_EVENT_REWRITER_H_