// 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_VIEWS_EVENT_MONITOR_AURA_H_ #define UI_VIEWS_EVENT_MONITOR_AURA_H_ #include <set> #include "base/memory/raw_ptr.h" #include "ui/views/event_monitor.h" namespace ui { class EventTarget; } namespace views { // Observes events by installing a pre-target handler on the ui::EventTarget. class EventMonitorAura : public EventMonitor { … }; } // namespace views #endif // UI_VIEWS_EVENT_MONITOR_AURA_H_