Index: views/widget/native_widget_private.h |
diff --git a/views/widget/native_widget_private.h b/views/widget/native_widget_private.h |
index 5139c1f84730b16f524d58d53ae9af953943bd17..8062d8f5eb550dfaf7fd0c9d3d07a1fa641cfee3 100644 |
--- a/views/widget/native_widget_private.h |
+++ b/views/widget/native_widget_private.h |
@@ -190,7 +190,10 @@ class NativeWidgetPrivate : public NativeWidget { |
virtual void EnableClose(bool enable) = 0; |
virtual void Show() = 0; |
virtual void Hide() = 0; |
- virtual void ShowNativeWidget(ShowState state) = 0; |
+ // Invoked if the initial show should maximize the window. |restored_bounds| |
+ // is the bounds of the window when not maximized. |
+ virtual void ShowMaximizedWithBounds(const gfx::Rect& restored_bounds) = 0; |
+ virtual void ShowWithState(ShowState state) = 0; |
virtual bool IsVisible() const = 0; |
virtual void Activate() = 0; |
virtual void Deactivate() = 0; |