| Index: net/url_request/url_request_test_util.h
|
| ===================================================================
|
| --- net/url_request/url_request_test_util.h (revision 117302)
|
| +++ net/url_request/url_request_test_util.h (working copy)
|
| @@ -120,7 +120,7 @@
|
| }
|
| bool request_failed() const { return request_failed_; }
|
| bool have_certificate_errors() const { return have_certificate_errors_; }
|
| - bool is_hsts_host() const { return is_hsts_host_; }
|
| + bool overridable() const { return overridable_; }
|
| bool auth_required_called() const { return auth_required_; }
|
|
|
| // net::URLRequest::Delegate:
|
| @@ -130,7 +130,7 @@
|
| net::AuthChallengeInfo* auth_info) OVERRIDE;
|
| virtual void OnSSLCertificateError(net::URLRequest* request,
|
| const net::SSLInfo& ssl_info,
|
| - bool is_hsts_host) OVERRIDE;
|
| + bool overridable) OVERRIDE;
|
| virtual bool CanGetCookies(const net::URLRequest* request,
|
| const net::CookieList& cookie_list) const OVERRIDE;
|
| virtual bool CanSetCookie(const net::URLRequest* request,
|
| @@ -166,7 +166,7 @@
|
| bool received_data_before_response_;
|
| bool request_failed_;
|
| bool have_certificate_errors_;
|
| - bool is_hsts_host_;
|
| + bool overridable_;
|
| bool auth_required_;
|
| std::string data_received_;
|
|
|
|
|