Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: ui/events/events_stub.cc

Issue 2654653002: Handle floating point coordinates from ozone to exosphere (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/events/events_default.cc ('k') | ui/events/win/events_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « ui/events/events_default.cc ('k') | ui/events/win/events_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698