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

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

Issue 8417008: aura: Add fullscreen/popups to RenderWidgetHostViewAura. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: avoid emulating WM_CHAR events for many keys Created 9 years, 2 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
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 88e7082d1a3756cae7985e71bf9f901b248f8dc4..bbb18888267ea77930d5965519c3ecb5b40f2706 100644
--- a/content/browser/renderer_host/web_input_event_aura.h
+++ b/content/browser/renderer_host/web_input_event_aura.h
@@ -12,12 +12,15 @@ namespace aura {
class KeyEvent;
class MouseEvent;
class TouchEvent;
+class Window;
}
namespace content {
-WebKit::WebMouseEvent MakeWebMouseEvent(aura::MouseEvent* event);
-WebKit::WebMouseWheelEvent MakeWebMouseWheelEvent(aura::MouseEvent* event);
+WebKit::WebMouseEvent MakeWebMouseEvent(aura::MouseEvent* event,
+ aura::Window* window);
Ben Goodger (Google) 2011/10/27 22:56:11 rename window to target. It becomes self documenti
Daniel Erat 2011/10/28 00:53:13 Done.
+WebKit::WebMouseWheelEvent MakeWebMouseWheelEvent(aura::MouseEvent* event,
+ aura::Window* window);
WebKit::WebKeyboardEvent MakeWebKeyboardEvent(aura::KeyEvent* event);
// Updates the WebTouchEvent based on the TouchEvent. It returns the updated

Powered by Google App Engine
This is Rietveld 408576698