| Index: win8/metro_driver/chrome_app_view_ash.h
|
| ===================================================================
|
| --- win8/metro_driver/chrome_app_view_ash.h (revision 186512)
|
| +++ win8/metro_driver/chrome_app_view_ash.h (working copy)
|
| @@ -86,6 +86,10 @@
|
| HRESULT OnKeyUp(winui::Core::ICoreWindow* sender,
|
| winui::Core::IKeyEventArgs* args);
|
|
|
| + // Invoked for system keys like Alt, etc.
|
| + HRESULT OnAcceleratorKeyDown(winui::Core::ICoreDispatcher* sender,
|
| + winui::Core::IAcceleratorKeyEventArgs* args);
|
| +
|
| HRESULT OnCharacterReceived(winui::Core::ICoreWindow* sender,
|
| winui::Core::ICharacterReceivedEventArgs* args);
|
|
|
| @@ -103,6 +107,8 @@
|
| EventRegistrationToken keyup_token_;
|
| EventRegistrationToken character_received_token_;
|
| EventRegistrationToken visibility_changed_token_;
|
| + EventRegistrationToken accel_keydown_token_;
|
| + EventRegistrationToken accel_keyup_token_;
|
|
|
| // Keep state about which button is currently down, if any, as PointerMoved
|
| // events do not contain that state, but Ash's MouseEvents need it.
|
|
|