| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 <stdint.h> | 5 #include <stdint.h> |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/time/time.h" | 8 #include "base/time/time.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "ui/events/event_utils.h" | 10 #include "ui/events/event_utils.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 base::TimeTicks EventTimeFromNative(const base::NativeEvent& native_event) { | 30 base::TimeTicks EventTimeFromNative(const base::NativeEvent& native_event) { |
| 31 NOTIMPLEMENTED(); | 31 NOTIMPLEMENTED(); |
| 32 return base::TimeTicks(); | 32 return base::TimeTicks(); |
| 33 } | 33 } |
| 34 | 34 |
| 35 gfx::Point EventLocationFromNative(const base::NativeEvent& native_event) { | 35 gfx::Point EventLocationFromNative(const base::NativeEvent& native_event) { |
| 36 NOTIMPLEMENTED(); | 36 NOTIMPLEMENTED(); |
| 37 return gfx::Point(); | 37 return gfx::Point(); |
| 38 } | 38 } |
| 39 | 39 |
| 40 gfx::PointF EventLocationFromNativeF(const base::NativeEvent& native_event) { |
| 41 NOTIMPLEMENTED(); |
| 42 return gfx::PointF(); |
| 43 } |
| 44 |
| 40 gfx::Point EventSystemLocationFromNative( | 45 gfx::Point EventSystemLocationFromNative( |
| 41 const base::NativeEvent& native_event) { | 46 const base::NativeEvent& native_event) { |
| 42 NOTIMPLEMENTED(); | 47 NOTIMPLEMENTED(); |
| 43 return gfx::Point(); | 48 return gfx::Point(); |
| 44 } | 49 } |
| 45 | 50 |
| 46 int EventButtonFromNative(const base::NativeEvent& native_event) { | 51 int EventButtonFromNative(const base::NativeEvent& native_event) { |
| 47 NOTIMPLEMENTED(); | 52 NOTIMPLEMENTED(); |
| 48 return 0; | 53 return 0; |
| 49 } | 54 } |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 return 0; | 149 return 0; |
| 145 } | 150 } |
| 146 | 151 |
| 147 uint16_t UnmodifiedTextFromNative(const base::NativeEvent& native_event) { | 152 uint16_t UnmodifiedTextFromNative(const base::NativeEvent& native_event) { |
| 148 NOTIMPLEMENTED(); | 153 NOTIMPLEMENTED(); |
| 149 return 0; | 154 return 0; |
| 150 } | 155 } |
| 151 | 156 |
| 152 | 157 |
| 153 } // namespace ui | 158 } // namespace ui |
| OLD | NEW |