diff options
Diffstat (limited to 'apps/ui/native_app_window.h')
-rw-r--r-- | apps/ui/native_app_window.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/ui/native_app_window.h b/apps/ui/native_app_window.h index c20e3b1..37fbfbe 100644 --- a/apps/ui/native_app_window.h +++ b/apps/ui/native_app_window.h @@ -64,6 +64,10 @@ class NativeAppWindow : public ui::BaseWindow, virtual void ShowWithApp() = 0; virtual void HideWithApp() = 0; + // Updates the minimum and maximum size of the native window with the current + // size constraints. + virtual void UpdateWindowMinMaxSize() = 0; + virtual ~NativeAppWindow() {} }; |