| Index: chrome/browser/chromeos/options/vpn_config_view.h
 | 
| diff --git a/chrome/browser/chromeos/options/vpn_config_view.h b/chrome/browser/chromeos/options/vpn_config_view.h
 | 
| index a0baeb973c852411c9beddef7290b02da3b65b14..5ef9df405835a6d09e064799b354403277c78025 100644
 | 
| --- a/chrome/browser/chromeos/options/vpn_config_view.h
 | 
| +++ b/chrome/browser/chromeos/options/vpn_config_view.h
 | 
| @@ -51,27 +51,27 @@ class VPNConfigView : public ChildNetworkConfigView,
 | 
|  
 | 
|    // views::TextfieldController:
 | 
|    virtual void ContentsChanged(views::Textfield* sender,
 | 
| -                               const base::string16& new_contents) OVERRIDE;
 | 
| +                               const base::string16& new_contents) override;
 | 
|    virtual bool HandleKeyEvent(views::Textfield* sender,
 | 
| -                              const ui::KeyEvent& key_event) OVERRIDE;
 | 
| +                              const ui::KeyEvent& key_event) override;
 | 
|  
 | 
|    // views::ButtonListener:
 | 
|    virtual void ButtonPressed(views::Button* sender,
 | 
| -                             const ui::Event& event) OVERRIDE;
 | 
| +                             const ui::Event& event) override;
 | 
|  
 | 
|    // views::ComboboxListener:
 | 
| -  virtual void OnPerformAction(views::Combobox* combobox) OVERRIDE;
 | 
| +  virtual void OnPerformAction(views::Combobox* combobox) override;
 | 
|  
 | 
|    // CertLibrary::Observer:
 | 
| -  virtual void OnCertificatesLoaded(bool initial_load) OVERRIDE;
 | 
| +  virtual void OnCertificatesLoaded(bool initial_load) override;
 | 
|  
 | 
|    // ChildNetworkConfigView:
 | 
| -  virtual base::string16 GetTitle() const OVERRIDE;
 | 
| -  virtual views::View* GetInitiallyFocusedView() OVERRIDE;
 | 
| -  virtual bool CanLogin() OVERRIDE;
 | 
| -  virtual bool Login() OVERRIDE;
 | 
| -  virtual void Cancel() OVERRIDE;
 | 
| -  virtual void InitFocus() OVERRIDE;
 | 
| +  virtual base::string16 GetTitle() const override;
 | 
| +  virtual views::View* GetInitiallyFocusedView() override;
 | 
| +  virtual bool CanLogin() override;
 | 
| +  virtual bool Login() override;
 | 
| +  virtual void Cancel() override;
 | 
| +  virtual void InitFocus() override;
 | 
|  
 | 
|   private:
 | 
|    // Initializes data members and create UI controls.
 | 
| 
 |