| Index: win8/metro_driver/chrome_app_view_ash.h
|
| diff --git a/win8/metro_driver/chrome_app_view_ash.h b/win8/metro_driver/chrome_app_view_ash.h
|
| index 1e9e60105b012f1e11b47059591ca660f543f7b6..537f8afd5eef77c7f449178d75059d5ca1046ea6 100644
|
| --- a/win8/metro_driver/chrome_app_view_ash.h
|
| +++ b/win8/metro_driver/chrome_app_view_ash.h
|
| @@ -110,6 +110,9 @@ class ChromeAppViewAsh
|
| HRESULT OnWindowActivated(winui::Core::ICoreWindow* sender,
|
| winui::Core::IWindowActivatedEventArgs* args);
|
|
|
| + HRESULT OnSizeChanged(winui::Core::ICoreWindow* sender,
|
| + winui::Core::IWindowSizeChangedEventArgs* args);
|
| +
|
| mswr::ComPtr<winui::Core::ICoreWindow> window_;
|
| mswr::ComPtr<winapp::Core::ICoreApplicationView> view_;
|
| EventRegistrationToken activated_token_;
|
| @@ -124,6 +127,7 @@ class ChromeAppViewAsh
|
| EventRegistrationToken accel_keydown_token_;
|
| EventRegistrationToken accel_keyup_token_;
|
| EventRegistrationToken window_activated_token_;
|
| + EventRegistrationToken sizechange_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.
|
|
|