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

Unified Diff: ui/aura/remote_root_window_host_win.h

Issue 11194044: Add keyboard events to metro aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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: ui/aura/remote_root_window_host_win.h
===================================================================
--- ui/aura/remote_root_window_host_win.h (revision 162199)
+++ ui/aura/remote_root_window_host_win.h (working copy)
@@ -22,8 +22,10 @@
static RemoteRootWindowHostWin* Instance();
static RemoteRootWindowHostWin* Create(const gfx::Rect& bounds);
- void OnMouseMoved(int x, int y, int extra);
- void OnMouseClick(int x, int y, int extra);
+ void OnMouseMoved(int32 x, int32 y, int32 extra);
+ void OnMouseClick(int32 x, int32 y, int32 extra);
+ void OnKeyDown(uint32 vkey, uint32 repeat_count, uint32 scan_code);
+ void OnKeyUp(uint32 vkey, uint32 repeat_count, uint32 scan_code);
private:
RemoteRootWindowHostWin(const gfx::Rect& bounds);

Powered by Google App Engine
This is Rietveld 408576698