| Index: views/test/test_views_delegate.h
|
| diff --git a/views/test/test_views_delegate.h b/views/test/test_views_delegate.h
|
| index 82618ffd4bf1331fc9563b7b738d6a8e49784963..a008656e25ca531cd0f95d9789a1796600c328ab 100644
|
| --- a/views/test/test_views_delegate.h
|
| +++ b/views/test/test_views_delegate.h
|
| @@ -35,12 +35,13 @@ class TestViewsDelegate : public ViewsDelegate {
|
| virtual void SaveWindowPlacement(const Widget* window,
|
| const std::wstring& window_name,
|
| const gfx::Rect& bounds,
|
| - bool maximized) OVERRIDE {}
|
| + ui::WindowShowState show_state) OVERRIDE;
|
| virtual bool GetSavedWindowBounds(const std::wstring& window_name,
|
| gfx::Rect* bounds) const OVERRIDE;
|
|
|
| - virtual bool GetSavedMaximizedState(const std::wstring& window_name,
|
| - bool* maximized) const OVERRIDE;
|
| + virtual bool GetSavedWindowShowState(
|
| + const std::wstring& window_name,
|
| + ui::WindowShowState* show_state) const OVERRIDE;
|
|
|
| virtual void NotifyAccessibilityEvent(
|
| View* view, ui::AccessibilityTypes::Event event_type) OVERRIDE {}
|
|
|