| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "views/events/event.h" | 5 #include "views/events/event.h" |
| 6 | 6 |
| 7 #include "aura/event.h" | |
| 8 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "ui/aura/event.h" |
| 9 | 9 |
| 10 namespace views { | 10 namespace views { |
| 11 | 11 |
| 12 namespace { | 12 namespace { |
| 13 | 13 |
| 14 int GetKeyStateFlags() { | 14 int GetKeyStateFlags() { |
| 15 NOTIMPLEMENTED(); | 15 NOTIMPLEMENTED(); |
| 16 return 0; | 16 return 0; |
| 17 } | 17 } |
| 18 | 18 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 | 122 |
| 123 MouseWheelEvent::MouseWheelEvent(NativeEvent2 native_event_2, | 123 MouseWheelEvent::MouseWheelEvent(NativeEvent2 native_event_2, |
| 124 FromNativeEvent2 from_native) | 124 FromNativeEvent2 from_native) |
| 125 : MouseEvent(native_event_2, from_native) { | 125 : MouseEvent(native_event_2, from_native) { |
| 126 // No one should ever call this on Windows. | 126 // No one should ever call this on Windows. |
| 127 // TODO(msw): remove once we rid views of Gtk/Gdk. | 127 // TODO(msw): remove once we rid views of Gtk/Gdk. |
| 128 NOTREACHED(); | 128 NOTREACHED(); |
| 129 } | 129 } |
| 130 | 130 |
| 131 } // namespace views | 131 } // namespace views |
| OLD | NEW |