| Index: chrome/browser/ui/startup/autolaunch_prompt_win.cc
 | 
| diff --git a/chrome/browser/ui/startup/autolaunch_prompt_win.cc b/chrome/browser/ui/startup/autolaunch_prompt_win.cc
 | 
| index d3e4f60443d8368b2108d988f847556d73df7e41..50a7324fe3c8d541fe745d6e23cadf2deac676d3 100644
 | 
| --- a/chrome/browser/ui/startup/autolaunch_prompt_win.cc
 | 
| +++ b/chrome/browser/ui/startup/autolaunch_prompt_win.cc
 | 
| @@ -42,18 +42,17 @@ class AutolaunchInfoBarDelegate : public ConfirmInfoBarDelegate {
 | 
|  
 | 
|   private:
 | 
|    explicit AutolaunchInfoBarDelegate(Profile* profile);
 | 
| -  virtual ~AutolaunchInfoBarDelegate();
 | 
| +  ~AutolaunchInfoBarDelegate() override;
 | 
|  
 | 
|    void set_should_expire() { should_expire_ = true; }
 | 
|  
 | 
|    // ConfirmInfoBarDelegate:
 | 
| -  virtual int GetIconID() const override;
 | 
| -  virtual bool ShouldExpireInternal(
 | 
| -      const NavigationDetails& details) const override;
 | 
| -  virtual base::string16 GetMessageText() const override;
 | 
| -  virtual base::string16 GetButtonLabel(InfoBarButton button) const override;
 | 
| -  virtual bool Accept() override;
 | 
| -  virtual bool Cancel() override;
 | 
| +  int GetIconID() const override;
 | 
| +  bool ShouldExpireInternal(const NavigationDetails& details) const override;
 | 
| +  base::string16 GetMessageText() const override;
 | 
| +  base::string16 GetButtonLabel(InfoBarButton button) const override;
 | 
| +  bool Accept() override;
 | 
| +  bool Cancel() override;
 | 
|  
 | 
|    // Weak pointer to the profile, not owned by us.
 | 
|    Profile* profile_;
 | 
| 
 |