| Index: content/browser/ssl/ssl_cert_error_handler.h
|
| ===================================================================
|
| --- content/browser/ssl/ssl_cert_error_handler.h (revision 117302)
|
| +++ content/browser/ssl/ssl_cert_error_handler.h (working copy)
|
| @@ -21,14 +21,14 @@
|
| net::URLRequest* request,
|
| ResourceType::Type resource_type,
|
| const net::SSLInfo& ssl_info,
|
| - bool is_hsts_host);
|
| + bool overridable);
|
|
|
| virtual SSLCertErrorHandler* AsSSLCertErrorHandler() OVERRIDE;
|
|
|
| // These accessors are available on either thread
|
| const net::SSLInfo& ssl_info() const { return ssl_info_; }
|
| int cert_error() const { return cert_error_; }
|
| - bool is_hsts_host() const { return is_hsts_host_; }
|
| + bool overridable() const { return overridable_; }
|
|
|
| protected:
|
| // SSLErrorHandler methods
|
| @@ -41,7 +41,7 @@
|
| // These read-only members may be accessed on any thread.
|
| const net::SSLInfo ssl_info_;
|
| const int cert_error_; // The error we represent.
|
| - const bool is_hsts_host_; // true if the error is from an HSTS host.
|
| + const bool overridable_; // true if the error is from an HSTS host.
|
|
|
| DISALLOW_COPY_AND_ASSIGN(SSLCertErrorHandler);
|
| };
|
|
|