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

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

Issue 11339037: aura-touch: Refactor some code so that both cros and win-aura can share some code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 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) 2012 The Chromium Authors. All rights reserved. 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 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 "base/logging.h" 8 #include "base/logging.h"
9 #include "third_party/WebKit/Source/WebKit/chromium/public/win/WebInputEventFact ory.h" 9 #include "third_party/WebKit/Source/WebKit/chromium/public/win/WebInputEventFact ory.h"
10 10
(...skipping 26 matching lines...) Expand all
37 native_event.lParam); 37 native_event.lParam);
38 } 38 }
39 39
40 WebKit::WebGestureEvent MakeWebGestureEventFromNativeEvent( 40 WebKit::WebGestureEvent MakeWebGestureEventFromNativeEvent(
41 base::NativeEvent native_event) { 41 base::NativeEvent native_event) {
42 // TODO: Create gestures from native event. 42 // TODO: Create gestures from native event.
43 NOTIMPLEMENTED(); 43 NOTIMPLEMENTED();
44 return WebKit::WebGestureEvent(); 44 return WebKit::WebGestureEvent();
45 } 45 }
46 46
47 WebKit::WebTouchPoint* UpdateWebTouchEventFromNativeEvent(
48 base::NativeEvent native_event, WebKit::WebTouchEvent* web_event) {
49 NOTIMPLEMENTED();
50 return NULL;
51 }
52
53 } // namespace content 47 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/web_input_event_aura.cc ('k') | content/browser/renderer_host/web_input_event_aurax11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698