| Index: chrome/browser/ui/unload_controller.h
|
| diff --git a/chrome/browser/ui/unload_controller.h b/chrome/browser/ui/unload_controller.h
|
| index db64891b36ec1a09cad0f88d5daf1a86c39c32ee..217b8547355575b06cb24b1710773b22470712b2 100644
|
| --- a/chrome/browser/ui/unload_controller.h
|
| +++ b/chrome/browser/ui/unload_controller.h
|
| @@ -88,19 +88,19 @@ class UnloadController : public content::NotificationObserver,
|
| // Overridden from content::NotificationObserver:
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) OVERRIDE;
|
| + const content::NotificationDetails& details) override;
|
|
|
| // Overridden from TabStripModelObserver:
|
| virtual void TabInsertedAt(content::WebContents* contents,
|
| int index,
|
| - bool foreground) OVERRIDE;
|
| + bool foreground) override;
|
| virtual void TabDetachedAt(content::WebContents* contents,
|
| - int index) OVERRIDE;
|
| + int index) override;
|
| virtual void TabReplacedAt(TabStripModel* tab_strip_model,
|
| content::WebContents* old_contents,
|
| content::WebContents* new_contents,
|
| - int index) OVERRIDE;
|
| - virtual void TabStripEmpty() OVERRIDE;
|
| + int index) override;
|
| + virtual void TabStripEmpty() override;
|
|
|
| void TabAttachedImpl(content::WebContents* contents);
|
| void TabDetachedImpl(content::WebContents* contents);
|
|
|