Make USB permissions work in the new permission message system
[chromium-blink-merge.git] / content / browser / renderer_host / web_input_event_aurawin.cc
blob549e2f2bb1defff451e6eddb86ed09532931f155
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/browser/renderer_host/web_input_event_aura.h"
7 #include "base/event_types.h"
8 #include "base/logging.h"
9 #include "content/browser/renderer_host/input/web_input_event_builders_win.h"
11 namespace content {
13 // On Windows, we can just use the builtin WebKit factory methods to fully
14 // construct our pre-translated events.
16 blink::WebMouseEvent MakeUntranslatedWebMouseEventFromNativeEvent(
17 const base::NativeEvent& native_event) {
18 return WebMouseEventBuilder::Build(native_event.hwnd,
19 native_event.message,
20 native_event.wParam,
21 native_event.lParam,
22 native_event.time);
25 blink::WebMouseWheelEvent MakeUntranslatedWebMouseWheelEventFromNativeEvent(
26 const base::NativeEvent& native_event) {
27 return WebMouseWheelEventBuilder::Build(native_event.hwnd,
28 native_event.message,
29 native_event.wParam,
30 native_event.lParam,
31 native_event.time);
34 blink::WebKeyboardEvent MakeWebKeyboardEventFromNativeEvent(
35 const base::NativeEvent& native_event) {
36 return WebKeyboardEventBuilder::Build(native_event.hwnd,
37 native_event.message,
38 native_event.wParam,
39 native_event.lParam,
40 native_event.time);
43 blink::WebGestureEvent MakeWebGestureEventFromNativeEvent(
44 const base::NativeEvent& native_event) {
45 // TODO: Create gestures from native event.
46 NOTIMPLEMENTED();
47 return blink::WebGestureEvent();
50 } // namespace content