diff options
Diffstat (limited to 'views/window/native_window.h')
-rw-r--r-- | views/window/native_window.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/views/window/native_window.h b/views/window/native_window.h index ca5c6fc..dc3a579 100644 --- a/views/window/native_window.h +++ b/views/window/native_window.h @@ -63,6 +63,14 @@ class NativeWindow { // Enables or disables the close button for the window. virtual void EnableClose(bool enable) = 0; + + // Window pass-thrus --------------------------------------------------------- + // See documentation in window.h + + virtual NonClientFrameView* CreateFrameViewForWindow() = 0; + virtual void UpdateFrameAfterFrameChange() = 0; + virtual bool ShouldUseNativeFrame() const = 0; + virtual void FrameTypeChanged() = 0; }; } // namespace views |