| Index: chrome/browser/ui/views/menu_model_adapter_test.cc
|
| diff --git a/chrome/browser/ui/views/menu_model_adapter_test.cc b/chrome/browser/ui/views/menu_model_adapter_test.cc
|
| index a13e16554839f43c9e869d2460bf010fa0b1f996..713be59f88b43dccddaaed0e404e1b5722456e2e 100644
|
| --- a/chrome/browser/ui/views/menu_model_adapter_test.cc
|
| +++ b/chrome/browser/ui/views/menu_model_adapter_test.cc
|
| @@ -44,7 +44,7 @@ class TestViewsDelegate : public views::ViewsDelegate {
|
| virtual void SaveWindowPlacement(const views::Widget* widget,
|
| 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,
|
| @@ -52,8 +52,9 @@ class TestViewsDelegate : public views::ViewsDelegate {
|
| return false;
|
| }
|
|
|
| - 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 {
|
| return false;
|
| }
|
|
|
|
|