Index: ui/views/event_monitor_aura.h |
diff --git a/ui/views/event_monitor_aura.h b/ui/views/event_monitor_aura.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..60e6d69c2b60c10f35ac89560135faa1ac7e011f |
--- /dev/null |
+++ b/ui/views/event_monitor_aura.h |
@@ -0,0 +1,26 @@ |
+// Copyright 2014 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. |
+ |
+#ifndef UI_VIEWS_EVENT_MONITOR_AURA_H_ |
+#define UI_VIEWS_EVENT_MONITOR_AURA_H_ |
+ |
+#include "base/macros.h" |
+#include "ui/views/event_monitor.h" |
+ |
+namespace views { |
+ |
+class EventMonitorAura : public EventMonitor { |
+ public: |
+ explicit EventMonitorAura(ui::EventHandler* event_handler); |
+ virtual ~EventMonitorAura(); |
+ |
+ private: |
+ ui::EventHandler* event_handler; // Weak. Owned by our owner. |
+ |
+ DISALLOW_COPY_AND_ASSIGN(EventMonitorAura); |
+}; |
+ |
+} // namespace views |
+ |
+#endif // UI_VIEWS_EVENT_MONITOR_AURA_H_ |