Home | History | Annotate | Download | only in renderer_host
      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.
      4 
      5 #ifndef CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_
      6 #define CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_
      7 
      8 #include "content/common/content_export.h"
      9 #include "third_party/WebKit/public/web/WebInputEvent.h"
     10 
     11 namespace ui {
     12 class GestureEvent;
     13 class KeyEvent;
     14 class MouseEvent;
     15 class MouseWheelEvent;
     16 class ScrollEvent;
     17 class TouchEvent;
     18 }
     19 
     20 namespace content {
     21 
     22 // Used for scrolling. This matches Firefox behavior.
     23 const int kPixelsPerTick = 53;
     24 
     25 CONTENT_EXPORT WebKit::WebMouseEvent MakeWebMouseEvent(
     26     ui::MouseEvent* event);
     27 CONTENT_EXPORT WebKit::WebMouseWheelEvent MakeWebMouseWheelEvent(
     28     ui::MouseWheelEvent* event);
     29 CONTENT_EXPORT WebKit::WebMouseWheelEvent MakeWebMouseWheelEvent(
     30     ui::ScrollEvent* event);
     31 CONTENT_EXPORT WebKit::WebKeyboardEvent MakeWebKeyboardEvent(
     32     ui::KeyEvent* event);
     33 CONTENT_EXPORT WebKit::WebGestureEvent MakeWebGestureEvent(
     34     ui::GestureEvent* event);
     35 CONTENT_EXPORT WebKit::WebGestureEvent MakeWebGestureEvent(
     36     ui::ScrollEvent* event);
     37 CONTENT_EXPORT WebKit::WebGestureEvent MakeWebGestureEventFlingCancel();
     38 
     39 }  // namespace content
     40 
     41 #endif  // CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_
     42