blob: 185f3041fbc22486c2d39438bc966aeca5a8c686 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/events/test/test_event_rewriter.h"
#include "ui/events/event.h"
namespace ui {
namespace test {
TestEventRewriter::TestEventRewriter() = default;
TestEventRewriter::~TestEventRewriter() = default;
ui::EventDispatchDetails TestEventRewriter::RewriteEvent(
const ui::Event& event,
const Continuation continuation) {
++events_seen_;
last_event_ = ui::Event::Clone(event);
return SendEvent(continuation, &event);
}
} // namespace test
} // namespace ui