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

Unified Diff: content/browser/renderer_host/web_input_event_aura.h

Issue 10541139: Improve MakeWebKeyboardEventFromAuraEvent() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix linux_chromeos_clang shared build Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/browser/renderer_host/web_input_event_aura_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/web_input_event_aura.h
diff --git a/content/browser/renderer_host/web_input_event_aura.h b/content/browser/renderer_host/web_input_event_aura.h
index 839c51db27f4c840e43fe38a6fb08c234fb52e24..eb03e6952885738d27a13f9ec93193798c6b664d 100644
--- a/content/browser/renderer_host/web_input_event_aura.h
+++ b/content/browser/renderer_host/web_input_event_aura.h
@@ -6,6 +6,7 @@
#define CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_
#pragma once
+#include "content/common/content_export.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
namespace aura {
@@ -18,12 +19,18 @@ class TouchEvent;
namespace content {
-WebKit::WebMouseEvent MakeWebMouseEvent(aura::MouseEvent* event);
-WebKit::WebMouseWheelEvent MakeWebMouseWheelEvent(aura::MouseEvent* event);
-WebKit::WebMouseWheelEvent MakeWebMouseWheelEvent(aura::ScrollEvent* event);
-WebKit::WebKeyboardEvent MakeWebKeyboardEvent(aura::KeyEvent* event);
-WebKit::WebGestureEvent MakeWebGestureEvent(aura::GestureEvent* event);
-WebKit::WebGestureEvent MakeWebGestureEvent(aura::ScrollEvent* event);
+CONTENT_EXPORT WebKit::WebMouseEvent MakeWebMouseEvent(
+ aura::MouseEvent* event);
+CONTENT_EXPORT WebKit::WebMouseWheelEvent MakeWebMouseWheelEvent(
+ aura::MouseEvent* event);
+CONTENT_EXPORT WebKit::WebMouseWheelEvent MakeWebMouseWheelEvent(
+ aura::ScrollEvent* event);
+CONTENT_EXPORT WebKit::WebKeyboardEvent MakeWebKeyboardEvent(
+ aura::KeyEvent* event);
+CONTENT_EXPORT WebKit::WebGestureEvent MakeWebGestureEvent(
+ aura::GestureEvent* event);
+CONTENT_EXPORT WebKit::WebGestureEvent MakeWebGestureEvent(
+ aura::ScrollEvent* event);
// Updates the WebTouchEvent based on the TouchEvent. It returns the updated
// WebTouchPoint contained in the WebTouchEvent, or NULL if no point was
« no previous file with comments | « no previous file | content/browser/renderer_host/web_input_event_aura_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698