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 "base/logging.h" | 5 #include "base/logging.h" |
6 #include "base/time/time.h" | 6 #include "base/time/time.h" |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 #include "ui/events/event_utils.h" | 8 #include "ui/events/event_utils.h" |
9 #include "ui/events/keycodes/dom3/dom_code.h" | 9 #include "ui/events/keycodes/dom3/dom_code.h" |
10 #include "ui/gfx/geometry/point.h" | 10 #include "ui/gfx/geometry/point.h" |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 | 63 |
64 base::NativeEvent CopyNativeEvent(const base::NativeEvent& event) { | 64 base::NativeEvent CopyNativeEvent(const base::NativeEvent& event) { |
65 NOTIMPLEMENTED() << | 65 NOTIMPLEMENTED() << |
66 "Don't know how to copy base::NativeEvent for this platform"; | 66 "Don't know how to copy base::NativeEvent for this platform"; |
67 return NULL; | 67 return NULL; |
68 } | 68 } |
69 | 69 |
70 void ReleaseCopiedNativeEvent(const base::NativeEvent& event) { | 70 void ReleaseCopiedNativeEvent(const base::NativeEvent& event) { |
71 } | 71 } |
72 | 72 |
| 73 void IncrementTouchIdRefCount(const base::NativeEvent& native_event) { |
| 74 NOTIMPLEMENTED(); |
| 75 } |
| 76 |
73 void ClearTouchIdIfReleased(const base::NativeEvent& native_event) { | 77 void ClearTouchIdIfReleased(const base::NativeEvent& native_event) { |
74 NOTIMPLEMENTED(); | 78 NOTIMPLEMENTED(); |
75 } | 79 } |
76 | 80 |
77 int GetTouchId(const base::NativeEvent& native_event) { | 81 int GetTouchId(const base::NativeEvent& native_event) { |
78 NOTIMPLEMENTED(); | 82 NOTIMPLEMENTED(); |
79 return 0; | 83 return 0; |
80 } | 84 } |
81 | 85 |
82 float GetTouchRadiusX(const base::NativeEvent& native_event) { | 86 float GetTouchRadiusX(const base::NativeEvent& native_event) { |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 return 0; | 153 return 0; |
150 } | 154 } |
151 | 155 |
152 uint16 UnmodifiedTextFromNative(const base::NativeEvent& native_event) { | 156 uint16 UnmodifiedTextFromNative(const base::NativeEvent& native_event) { |
153 NOTIMPLEMENTED(); | 157 NOTIMPLEMENTED(); |
154 return 0; | 158 return 0; |
155 } | 159 } |
156 | 160 |
157 | 161 |
158 } // namespace ui | 162 } // namespace ui |
OLD | NEW |