| Index: chrome/browser/captive_portal/captive_portal_tab_helper.h
|
| diff --git a/chrome/browser/captive_portal/captive_portal_tab_helper.h b/chrome/browser/captive_portal/captive_portal_tab_helper.h
|
| index fa4c92c09938f771f40a097e1a5771b4350a6c34..4acf897578626932637813b0327df2e5a85541c9 100644
|
| --- a/chrome/browser/captive_portal/captive_portal_tab_helper.h
|
| +++ b/chrome/browser/captive_portal/captive_portal_tab_helper.h
|
| @@ -64,33 +64,33 @@ class CaptivePortalTabHelper
|
|
|
| // content::WebContentsObserver:
|
| virtual void RenderViewDeleted(
|
| - content::RenderViewHost* render_view_host) OVERRIDE;
|
| + content::RenderViewHost* render_view_host) override;
|
|
|
| virtual void DidStartProvisionalLoadForFrame(
|
| content::RenderFrameHost* render_frame_host,
|
| const GURL& validated_url,
|
| bool is_error_page,
|
| - bool is_iframe_srcdoc) OVERRIDE;
|
| + bool is_iframe_srcdoc) override;
|
|
|
| virtual void DidCommitProvisionalLoadForFrame(
|
| content::RenderFrameHost* render_frame_host,
|
| const GURL& url,
|
| - ui::PageTransition transition_type) OVERRIDE;
|
| + ui::PageTransition transition_type) override;
|
|
|
| virtual void DidFailProvisionalLoad(
|
| content::RenderFrameHost* render_frame_host,
|
| const GURL& validated_url,
|
| int error_code,
|
| - const base::string16& error_description) OVERRIDE;
|
| + const base::string16& error_description) override;
|
|
|
| virtual void DidStopLoading(
|
| - content::RenderViewHost* render_view_host) OVERRIDE;
|
| + content::RenderViewHost* render_view_host) override;
|
|
|
| // content::NotificationObserver:
|
| virtual void Observe(
|
| int type,
|
| const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) OVERRIDE;
|
| + const content::NotificationDetails& details) override;
|
|
|
| // Called when a certificate interstitial error page is about to be shown.
|
| void OnSSLCertError(const net::SSLInfo& ssl_info);
|
|
|