| Index: chrome/browser/safe_browsing/client_side_detection_host.h
|
| diff --git a/chrome/browser/safe_browsing/client_side_detection_host.h b/chrome/browser/safe_browsing/client_side_detection_host.h
|
| index 632bfdd31e0533abf20943f8b1f30ad50f2459bb..77ed9e3adca5c1ccc82129aa1d870b64750d80dc 100644
|
| --- a/chrome/browser/safe_browsing/client_side_detection_host.h
|
| +++ b/chrome/browser/safe_browsing/client_side_detection_host.h
|
| @@ -38,24 +38,24 @@ class ClientSideDetectionHost : public content::WebContentsObserver,
|
| virtual ~ClientSideDetectionHost();
|
|
|
| // From content::WebContentsObserver.
|
| - virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
| + virtual bool OnMessageReceived(const IPC::Message& message) override;
|
|
|
| // From content::WebContentsObserver. If we navigate away we cancel all
|
| // pending callbacks that could show an interstitial, and check to see whether
|
| // we should classify the new URL.
|
| virtual void DidNavigateMainFrame(
|
| const content::LoadCommittedDetails& details,
|
| - const content::FrameNavigateParams& params) OVERRIDE;
|
| + const content::FrameNavigateParams& params) override;
|
|
|
| // Called when the SafeBrowsingService found a hit with one of the
|
| // SafeBrowsing lists. This method is called on the UI thread.
|
| virtual void OnSafeBrowsingHit(
|
| - const SafeBrowsingUIManager::UnsafeResource& resource) OVERRIDE;
|
| + const SafeBrowsingUIManager::UnsafeResource& resource) override;
|
|
|
| // Called when the SafeBrowsingService finds a match on the SB lists.
|
| // Called on the UI thread. Called even if the resource is whitelisted.
|
| virtual void OnSafeBrowsingMatch(
|
| - const SafeBrowsingUIManager::UnsafeResource& resource) OVERRIDE;
|
| + const SafeBrowsingUIManager::UnsafeResource& resource) override;
|
|
|
| virtual scoped_refptr<SafeBrowsingDatabaseManager> database_manager();
|
|
|
| @@ -67,7 +67,7 @@ class ClientSideDetectionHost : public content::WebContentsObserver,
|
| explicit ClientSideDetectionHost(content::WebContents* tab);
|
|
|
| // From content::WebContentsObserver.
|
| - virtual void WebContentsDestroyed() OVERRIDE;
|
| + virtual void WebContentsDestroyed() override;
|
|
|
| // Used for testing.
|
| void set_safe_browsing_managers(
|
| @@ -124,11 +124,11 @@ class ClientSideDetectionHost : public content::WebContentsObserver,
|
| // method is called in the UI thread.
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) OVERRIDE;
|
| + const content::NotificationDetails& details) override;
|
|
|
| // Inherited from WebContentsObserver. This is called once the page is
|
| // done loading.
|
| - virtual void DidStopLoading(content::RenderViewHost* rvh) OVERRIDE;
|
| + virtual void DidStopLoading(content::RenderViewHost* rvh) override;
|
|
|
| // Returns true if the user has seen a regular SafeBrowsing
|
| // interstitial for the current page. This is only true if the user has
|
|
|