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

Unified Diff: chrome/browser/metro_viewer/metro_viewer_process_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: chrome/browser/metro_viewer/metro_viewer_process_host_win.h
===================================================================
--- chrome/browser/metro_viewer/metro_viewer_process_host_win.h (revision 162199)
+++ chrome/browser/metro_viewer/metro_viewer_process_host_win.h (working copy)
@@ -32,9 +32,11 @@
private:
void OnSetTargetSurface(gfx::NativeViewId target_surface);
- void OnMouseEvent(int msg, WPARAM w_param, LPARAM l_param);
- void OnMouseMoved(int x, int y, int modifiers);
- void OnMouseButton(int x, int y, int modifiers);
+ void OnMouseEvent(int32 msg, WPARAM w_param, LPARAM l_param);
scottmg 2012/10/18 00:53:19 is it normal to use explicit sizes for ints in mes
cpu_(ooo_6.6-7.5) 2012/10/18 20:15:26 Any integer type is fair game. The key ones don't
+ void OnMouseMoved(int32 x, int32 y, int32 modifiers);
+ void OnMouseButton(int32 x, int32 y, int32 modifiers);
+ void OnKeyDown(uint32 vkey, uint32 repeat_count, uint32 scan_code);
+ void OnKeyUp(uint32 vkey, uint32 repeat_count, uint32 scan_code);
scoped_ptr<IPC::ChannelProxy> channel_;
« no previous file with comments | « no previous file | chrome/browser/metro_viewer/metro_viewer_process_host_win.cc » ('j') | win8/metro_driver/chrome_app_view.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698