| Index: chrome/browser/ui/browser_tab_strip_model_delegate.h | 
| diff --git a/chrome/browser/ui/browser_tab_strip_model_delegate.h b/chrome/browser/ui/browser_tab_strip_model_delegate.h | 
| index ce04f477f09a7c7adb6684524b040afe7bacb66f..d8cf48edbfe8311c39ea0203ef6623602024a493 100644 | 
| --- a/chrome/browser/ui/browser_tab_strip_model_delegate.h | 
| +++ b/chrome/browser/ui/browser_tab_strip_model_delegate.h | 
| @@ -22,24 +22,24 @@ class BrowserTabStripModelDelegate : public TabStripModelDelegate { | 
| // Overridden from TabStripModelDelegate: | 
| virtual void AddTabAt(const GURL& url, | 
| int index, | 
| -                           bool foreground) OVERRIDE; | 
| +                           bool foreground) override; | 
| virtual Browser* CreateNewStripWithContents( | 
| const std::vector<NewStripContents>& contentses, | 
| const gfx::Rect& window_bounds, | 
| -      bool maximize) OVERRIDE; | 
| -  virtual void WillAddWebContents(content::WebContents* contents) OVERRIDE; | 
| -  virtual int GetDragActions() const OVERRIDE; | 
| -  virtual bool CanDuplicateContentsAt(int index) OVERRIDE; | 
| -  virtual void DuplicateContentsAt(int index) OVERRIDE; | 
| -  virtual void CreateHistoricalTab(content::WebContents* contents) OVERRIDE; | 
| +      bool maximize) override; | 
| +  virtual void WillAddWebContents(content::WebContents* contents) override; | 
| +  virtual int GetDragActions() const override; | 
| +  virtual bool CanDuplicateContentsAt(int index) override; | 
| +  virtual void DuplicateContentsAt(int index) override; | 
| +  virtual void CreateHistoricalTab(content::WebContents* contents) override; | 
| virtual bool RunUnloadListenerBeforeClosing( | 
| -      content::WebContents* contents) OVERRIDE; | 
| +      content::WebContents* contents) override; | 
| virtual bool ShouldRunUnloadListenerBeforeClosing( | 
| -      content::WebContents* contents) OVERRIDE; | 
| -  virtual bool CanBookmarkAllTabs() const OVERRIDE; | 
| -  virtual void BookmarkAllTabs() OVERRIDE; | 
| -  virtual RestoreTabType GetRestoreTabType() OVERRIDE; | 
| -  virtual void RestoreTab() OVERRIDE; | 
| +      content::WebContents* contents) override; | 
| +  virtual bool CanBookmarkAllTabs() const override; | 
| +  virtual void BookmarkAllTabs() override; | 
| +  virtual RestoreTabType GetRestoreTabType() override; | 
| +  virtual void RestoreTab() override; | 
|  | 
| void CloseFrame(); | 
|  | 
|  |