Lines Matching refs:HttpAuth
99 : pending_auth_target_(HttpAuth::AUTH_NONE),
213 HttpAuth::Target target = pending_auth_target_;
214 if (target == HttpAuth::AUTH_NONE) {
218 pending_auth_target_ = HttpAuth::AUTH_NONE;
225 if (target == HttpAuth::AUTH_PROXY && establishing_tunnel_) {
246 void HttpNetworkTransaction::PrepareForAuthRestart(HttpAuth::Target target) {
300 return pending_auth_target_ != HttpAuth::AUTH_NONE &&
437 auth_controllers_[HttpAuth::AUTH_PROXY] = auth_controller;
438 pending_auth_target_ = HttpAuth::AUTH_PROXY;
641 HttpAuth::Target target = HttpAuth::AUTH_PROXY;
662 HttpAuth::Target target = HttpAuth::AUTH_SERVER;
729 if (ShouldApplyProxyAuth() && HaveAuth(HttpAuth::AUTH_PROXY))
730 auth_controllers_[HttpAuth::AUTH_PROXY]->AddAuthorizationHeader(
732 if (ShouldApplyServerAuth() && HaveAuth(HttpAuth::AUTH_SERVER))
733 auth_controllers_[HttpAuth::AUTH_SERVER]->AddAuthorizationHeader(
1218 pending_auth_target_ = HttpAuth::AUTH_NONE;
1272 HttpAuth::Target target = status == 407 ?
1273 HttpAuth::AUTH_PROXY : HttpAuth::AUTH_SERVER;
1274 if (target == HttpAuth::AUTH_PROXY && proxy_info_.is_direct())
1296 bool HttpNetworkTransaction::HaveAuth(HttpAuth::Target target) const {
1301 GURL HttpNetworkTransaction::AuthURL(HttpAuth::Target target) const {
1303 case HttpAuth::AUTH_PROXY: {
1312 case HttpAuth::AUTH_SERVER: