Index: chrome/browser/ui/views/menu_model_adapter_test.cc |
=================================================================== |
--- chrome/browser/ui/views/menu_model_adapter_test.cc (revision 98696) |
+++ chrome/browser/ui/views/menu_model_adapter_test.cc (working copy) |
@@ -44,16 +44,19 @@ |
virtual void SaveWindowPlacement(const views::Widget* widget, |
const std::wstring& window_name, |
const gfx::Rect& bounds, |
- ui::WindowShowState show_state) OVERRIDE { |
+ bool maximized) OVERRIDE { |
} |
- virtual bool GetSavedWindowPlacement( |
- const std::wstring& window_name, |
- gfx::Rect* bounds, |
- ui::WindowShowState* show_state) const OVERRIDE { |
+ virtual bool GetSavedWindowBounds(const std::wstring& window_name, |
+ gfx::Rect* bounds) const OVERRIDE { |
return false; |
} |
+ virtual bool GetSavedMaximizedState(const std::wstring& window_name, |
+ bool* maximized) const OVERRIDE { |
+ return false; |
+ } |
+ |
virtual void NotifyAccessibilityEvent( |
views::View* view, ui::AccessibilityTypes::Event event_type) OVERRIDE { |
} |