Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1987)

Unified Diff: views/views_delegate.h

Issue 115378: Move Always On Top setting out of Window/WindowDelegate and into task manager... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: views/views_delegate.h
===================================================================
--- views/views_delegate.h (revision 16089)
+++ views/views_delegate.h (working copy)
@@ -28,12 +28,11 @@
// 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 @@
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;
« chrome/browser/task_manager_win.cc ('K') | « views/DEPS ('k') | views/window/window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698