Index: chrome/browser/chromeos/login/ui/captive_portal_window_proxy.h |
diff --git a/chrome/browser/chromeos/login/ui/captive_portal_window_proxy.h b/chrome/browser/chromeos/login/ui/captive_portal_window_proxy.h |
index 2ed00e24c6079eb30cf0b14dc84e515fa9eff1a7..53482b24027816fc032049d1ca6c4ca506cb6be6 100644 |
--- a/chrome/browser/chromeos/login/ui/captive_portal_window_proxy.h |
+++ b/chrome/browser/chromeos/login/ui/captive_portal_window_proxy.h |
@@ -38,7 +38,7 @@ class CaptivePortalWindowProxy : public views::WidgetObserver { |
CaptivePortalWindowProxy(Delegate* delegate, |
content::WebContents* web_contents); |
- virtual ~CaptivePortalWindowProxy(); |
+ ~CaptivePortalWindowProxy() override; |
// Shows captive portal window only after a redirection has happened. So it is |
// safe to call this method, when the caller isn't 100% sure that the network |
@@ -62,9 +62,9 @@ class CaptivePortalWindowProxy : public views::WidgetObserver { |
void OnOriginalURLLoaded(); |
// Overridden from views::WidgetObserver: |
- virtual void OnWidgetClosing(views::Widget* widget) override; |
- virtual void OnWidgetDestroying(views::Widget* widget) override; |
- virtual void OnWidgetDestroyed(views::Widget* widget) override; |
+ void OnWidgetClosing(views::Widget* widget) override; |
+ void OnWidgetDestroying(views::Widget* widget) override; |
+ void OnWidgetDestroyed(views::Widget* widget) override; |
private: |
friend class CaptivePortalWindowTest; |