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 "content/browser/renderer_host/web_input_event_aura.h" | 5 #include "content/browser/renderer_host/web_input_event_aura.h" |
6 | 6 |
7 #include "base/event_types.h" | 7 #include "base/event_types.h" |
8 #include "third_party/WebKit/Source/WebKit/chromium/public/win/WebInputEventFact
ory.h" | 8 #include "third_party/WebKit/Source/WebKit/chromium/public/win/WebInputEventFact
ory.h" |
9 | 9 |
10 namespace content { | 10 namespace content { |
(...skipping 18 matching lines...) Expand all Loading... |
29 } | 29 } |
30 | 30 |
31 WebKit::WebKeyboardEvent MakeWebKeyboardEventFromNativeEvent( | 31 WebKit::WebKeyboardEvent MakeWebKeyboardEventFromNativeEvent( |
32 base::NativeEvent native_event) { | 32 base::NativeEvent native_event) { |
33 return WebKit::WebInputEventFactory::keyboardEvent(native_event.hwnd, | 33 return WebKit::WebInputEventFactory::keyboardEvent(native_event.hwnd, |
34 native_event.message, | 34 native_event.message, |
35 native_event.wParam, | 35 native_event.wParam, |
36 native_event.lParam); | 36 native_event.lParam); |
37 } | 37 } |
38 | 38 |
| 39 WebKit::WebTouchPoint* UpdateWebTouchEventFromNativeEvent( |
| 40 base::NativeEvent native_event, WebKit::WebTouchEvent* web_event) { |
| 41 NOTIMPLEMENTED(); |
| 42 return NULL; |
| 43 } |
| 44 |
39 } // namespace content | 45 } // namespace content |
OLD | NEW |