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

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

Issue 492863002: mojo: Plumb through sufficient context to make real blink::WebInputEvents. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: final sky nits Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « ui/events/event_utils.cc ('k') | ui/events/ozone/events_ozone.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 "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/gfx/point.h" 9 #include "ui/gfx/point.h"
10 #include "ui/gfx/vector2d.h" 10 #include "ui/gfx/vector2d.h"
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 uint32 PlatformKeycodeFromNative(const base::NativeEvent& native_event) { 135 uint32 PlatformKeycodeFromNative(const base::NativeEvent& native_event) {
136 NOTIMPLEMENTED(); 136 NOTIMPLEMENTED();
137 return 0; 137 return 0;
138 } 138 }
139 139
140 bool IsCharFromNative(const base::NativeEvent& native_event) { 140 bool IsCharFromNative(const base::NativeEvent& native_event) {
141 NOTIMPLEMENTED(); 141 NOTIMPLEMENTED();
142 return false; 142 return false;
143 } 143 }
144 144
145 uint32 WindowsKeycodeFromNative(const base::NativeEvent& native_event) {
146 NOTIMPLEMENTED();
147 return 0;
148 }
149
150 uint16 TextFromNative(const base::NativeEvent& native_event) {
151 NOTIMPLEMENTED();
152 return 0;
153 }
154
155 uint16 UnmodifiedTextFromNative(const base::NativeEvent& native_event) {
156 NOTIMPLEMENTED();
157 return 0;
158 }
159
160
145 } // namespace ui 161 } // namespace ui
OLDNEW
« no previous file with comments | « ui/events/event_utils.cc ('k') | ui/events/ozone/events_ozone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698