diff options
Diffstat (limited to 'views/views_delegate.h')
-rw-r--r-- | views/views_delegate.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/views/views_delegate.h b/views/views_delegate.h index 082689c..6fe7f74 100644 --- a/views/views_delegate.h +++ b/views/views_delegate.h @@ -28,12 +28,11 @@ class ViewsDelegate { // Gets the clipboard. virtual Clipboard* GetClipboard() const = 0; - // Saves the position, size, maximized and always-on-top state for the - // window with the specified name. + // Saves the position, size and maximized state for the window with the + // specified name. virtual void SaveWindowPlacement(const std::wstring& window_name, const gfx::Rect& bounds, - bool maximized, - bool always_on_top) = 0; + bool maximized) = 0; // Retrieves the saved position and size for the window with the specified // name. @@ -45,11 +44,6 @@ class ViewsDelegate { virtual bool GetSavedMaximizedState(const std::wstring& window_name, bool* maximized) const = 0; - // Retrieves the saved always-on-top state for the window with the specified - // name. - virtual bool GetSavedAlwaysOnTopState(const std::wstring& window_name, - bool* always_on_top) const = 0; - #if defined(OS_WIN) // Retrieves the default window icon to use for windows if none is specified. virtual HICON GetDefaultWindowIcon() const = 0; |