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

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

Issue 739993002: MacViews: Fix build errors related to NativeWebKeyboardEvent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
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 11 matching lines...) Expand all
22 // Used for scrolling. This matches Firefox behavior. 22 // Used for scrolling. This matches Firefox behavior.
23 const int kPixelsPerTick = 53; 23 const int kPixelsPerTick = 53;
24 24
25 CONTENT_EXPORT blink::WebMouseEvent MakeWebMouseEvent( 25 CONTENT_EXPORT blink::WebMouseEvent MakeWebMouseEvent(
26 ui::MouseEvent* event); 26 ui::MouseEvent* event);
27 CONTENT_EXPORT blink::WebMouseWheelEvent MakeWebMouseWheelEvent( 27 CONTENT_EXPORT blink::WebMouseWheelEvent MakeWebMouseWheelEvent(
28 ui::MouseWheelEvent* event); 28 ui::MouseWheelEvent* event);
29 CONTENT_EXPORT blink::WebMouseWheelEvent MakeWebMouseWheelEvent( 29 CONTENT_EXPORT blink::WebMouseWheelEvent MakeWebMouseWheelEvent(
30 ui::ScrollEvent* event); 30 ui::ScrollEvent* event);
31 CONTENT_EXPORT blink::WebKeyboardEvent MakeWebKeyboardEvent( 31 CONTENT_EXPORT blink::WebKeyboardEvent MakeWebKeyboardEvent(
32 ui::KeyEvent* event); 32 const ui::KeyEvent* event);
sadrul 2014/11/21 19:33:42 Not for this CL ... but should this (and the rest)
Andre 2014/11/22 00:09:58 See https://codereview.chromium.org/740653006/
33 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent( 33 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent(
34 ui::GestureEvent* event); 34 ui::GestureEvent* event);
35 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent( 35 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent(
36 ui::ScrollEvent* event); 36 ui::ScrollEvent* event);
37 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEventFlingCancel(); 37 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEventFlingCancel();
38 38
39 } // namespace content 39 } // namespace content
40 40
41 #endif // CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_ 41 #endif // CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698