| Index: chrome/browser/ui/views/accessibility_event_router_views_unittest.cc
 | 
| diff --git a/chrome/browser/ui/views/accessibility_event_router_views_unittest.cc b/chrome/browser/ui/views/accessibility_event_router_views_unittest.cc
 | 
| index 24649bd7e75f41471c637a9d99c0cd18548a1086..3526b0a9745fdbab07746fe8bdf44e36d8e02328 100644
 | 
| --- a/chrome/browser/ui/views/accessibility_event_router_views_unittest.cc
 | 
| +++ b/chrome/browser/ui/views/accessibility_event_router_views_unittest.cc
 | 
| @@ -35,14 +35,12 @@ class AccessibilityViewsDelegate : public views::ViewsDelegate {
 | 
|    virtual void SaveWindowPlacement(const views::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 {
 | 
| -    return false;
 | 
| -  }
 | 
| -  virtual bool GetSavedMaximizedState(const std::wstring& window_name,
 | 
| -                                      bool* maximized) const OVERRIDE {
 | 
| +  virtual bool GetSavedWindowPlacement(
 | 
| +      const std::wstring& window_name,
 | 
| +      gfx::Rect* bounds,
 | 
| +      ui::WindowShowState* show_state) const OVERRIDE {
 | 
|      return false;
 | 
|    }
 | 
|    virtual void NotifyAccessibilityEvent(
 | 
| 
 |