| Index: chrome/browser/ssl/ssl_error_classification.h
|
| diff --git a/chrome/browser/ssl/ssl_error_classification.h b/chrome/browser/ssl/ssl_error_classification.h
|
| index 44539d6d9be090f9468d1a816994e142bfb5565b..bdcd8bcbc2a184e9f86d02233513da035a9c97b3 100644
|
| --- a/chrome/browser/ssl/ssl_error_classification.h
|
| +++ b/chrome/browser/ssl/ssl_error_classification.h
|
| @@ -31,7 +31,7 @@ class SSLErrorClassification : public content::NotificationObserver {
|
| const GURL& url,
|
| int cert_error,
|
| const net::X509Certificate& cert);
|
| - virtual ~SSLErrorClassification();
|
| + ~SSLErrorClassification() override;
|
|
|
| // Returns true if the system time is in the past.
|
| static bool IsUserClockInThePast(const base::Time& time_now);
|
| @@ -126,10 +126,9 @@ class SSLErrorClassification : public content::NotificationObserver {
|
| float CalculateScoreEnvironments() const;
|
|
|
| // content::NotificationObserver:
|
| - virtual void Observe(
|
| - int type,
|
| - const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) override;
|
| + void Observe(int type,
|
| + const content::NotificationSource& source,
|
| + const content::NotificationDetails& details) override;
|
|
|
| content::WebContents* web_contents_;
|
| // This stores the current time.
|
|
|