// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/aura/event_injector.h" #include <utility> #include "ui/aura/window.h" #include "ui/aura/window_tree_host.h" #include "ui/events/event.h" #include "ui/events/event_sink.h" #include "ui/gfx/geometry/transform.h" namespace aura { EventInjector::EventInjector() = default; EventInjector::~EventInjector() = default; ui::EventDispatchDetails EventInjector::Inject(WindowTreeHost* host, ui::Event* event) { … } } // namespace aura