Index: views/widget/native_widget_views.cc |
=================================================================== |
--- views/widget/native_widget_views.cc (revision 98696) |
+++ views/widget/native_widget_views.cc (working copy) |
@@ -251,11 +251,11 @@ |
size.width(), size.height()); |
} |
-void NativeWidgetViews::GetWindowPlacement( |
+void NativeWidgetViews::GetWindowBoundsAndMaximizedState( |
gfx::Rect* bounds, |
- ui::WindowShowState* show_state) const { |
+ bool* maximized) const { |
*bounds = GetView()->bounds(); |
- *show_state = ui::SHOW_STATE_NORMAL; |
+ *maximized = false; |
} |
void NativeWidgetViews::SetWindowTitle(const std::wstring& title) { |
@@ -349,7 +349,7 @@ |
ReleaseMouseCapture(); |
} |
-void NativeWidgetViews::ShowWithWindowState(ui::WindowShowState show_state) { |
+void NativeWidgetViews::ShowWithState(ShowState state) { |
Show(); |
} |