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

Side by Side Diff: content/browser/renderer_host/web_input_event_aura.h

Issue 1266643002: content: Populate WebPointerProperties with stylus details from ui::MouseEvent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@experimental-pointer-events
Patch Set: Fix windows floating point conversion Created 5 years, 3 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
« no previous file with comments | « no previous file | content/browser/renderer_host/web_input_event_aura.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) 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_
7 7
8 #include "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "third_party/WebKit/public/web/WebInputEvent.h" 9 #include "third_party/WebKit/public/web/WebInputEvent.h"
10 10
(...skipping 17 matching lines...) Expand all
28 const ui::MouseWheelEvent& event); 28 const ui::MouseWheelEvent& event);
29 CONTENT_EXPORT blink::WebMouseWheelEvent MakeWebMouseWheelEvent( 29 CONTENT_EXPORT blink::WebMouseWheelEvent MakeWebMouseWheelEvent(
30 const ui::ScrollEvent& event); 30 const ui::ScrollEvent& event);
31 CONTENT_EXPORT blink::WebKeyboardEvent MakeWebKeyboardEvent( 31 CONTENT_EXPORT blink::WebKeyboardEvent MakeWebKeyboardEvent(
32 const ui::KeyEvent& event); 32 const ui::KeyEvent& event);
33 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent( 33 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent(
34 const ui::GestureEvent& event); 34 const ui::GestureEvent& event);
35 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent( 35 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent(
36 const ui::ScrollEvent& event); 36 const ui::ScrollEvent& event);
37 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEventFlingCancel(); 37 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEventFlingCancel();
38 CONTENT_EXPORT blink::WebMouseEvent MakeWebMouseEventFromAuraEvent(
39 const ui::MouseEvent& event);
40 CONTENT_EXPORT blink::WebMouseWheelEvent MakeWebMouseWheelEventFromAuraEvent(
41 const ui::MouseWheelEvent& event);
sadrul 2015/09/09 17:32:06 You don't actually need to expose these functions,
38 42
39 } // namespace content 43 } // namespace content
40 44
41 #endif // CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_ 45 #endif // CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/web_input_event_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698