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

Side by Side Diff: content/browser/renderer_host/web_input_event_aurawin.cc

Issue 8377001: aura: Add touch-event support for RWHVA. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: windows Created 9 years, 1 month 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
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698