summaryrefslogtreecommitdiffstats
path: root/views/window/native_window.h
diff options
context:
space:
mode:
Diffstat (limited to 'views/window/native_window.h')
-rw-r--r--views/window/native_window.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/views/window/native_window.h b/views/window/native_window.h
index ca5c6fc..278a54f 100644
--- a/views/window/native_window.h
+++ b/views/window/native_window.h
@@ -29,12 +29,6 @@ class NonClientFrameView;
//
class NativeWindow {
public:
- enum ShowState {
- SHOW_RESTORED,
- SHOW_MAXIMIZED,
- SHOW_INACTIVE
- };
-
virtual ~NativeWindow() {}
// Creates an appropriate default NativeWindow implementation for the current
@@ -51,18 +45,8 @@ class NativeWindow {
protected:
friend class Window;
- // Returns the bounds of the window in screen coordinates for its non-
- // maximized state, regardless of whether or not it is currently maximized.
- virtual gfx::Rect GetRestoredBounds() const = 0;
-
- // Shows the window.
- virtual void ShowNativeWindow(ShowState state) = 0;
-
// Makes the NativeWindow modal.
virtual void BecomeModal() = 0;
-
- // Enables or disables the close button for the window.
- virtual void EnableClose(bool enable) = 0;
};
} // namespace views