diff options
Diffstat (limited to 'net/http/http_auth_controller.h')
-rw-r--r-- | net/http/http_auth_controller.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/net/http/http_auth_controller.h b/net/http/http_auth_controller.h index 6a74dea..016f88e 100644 --- a/net/http/http_auth_controller.h +++ b/net/http/http_auth_controller.h @@ -46,7 +46,8 @@ class HttpAuthController { // |HandleAuthChallenge()| returns OK on success, or a network error code // otherwise. It may also populate |auth_info_|. int HandleAuthChallenge(scoped_refptr<HttpResponseHeaders> headers, - int load_flags, bool establishing_tunnel); + bool do_not_send_server_auth, + bool establishing_tunnel); // Store the supplied credentials and prepare to restart the auth. void ResetAuth(const std::wstring& username, const std::wstring& password); @@ -63,6 +64,10 @@ class HttpAuthController { return auth_info_; } + void set_net_log(const BoundNetLog& net_log) { + net_log_ = net_log; + } + private: // Searches the auth cache for an entry that encompasses the request's path. // If such an entry is found, updates |identity_| and |handler_| with the |