HomeSort by relevance Sort by last modified time
    Searched refs:auth_info_ (Results 1 - 6 of 6) sorted by null

  /external/chromium/chrome/browser/ui/login/
login_prompt.cc 77 auth_info_(auth_info),
85 DCHECK(auth_info_) << "LoginHandler constructed with NULL auth info";
390 : request_url_(request_url), auth_info_(auth_info), handler_(handler) {
416 string16 host_and_port_hack16 = WideToUTF16Hack(auth_info_->host_and_port);
417 string16 realm_hack16 = WideToUTF16Hack(auth_info_->realm);
433 if (LowerCaseEqualsASCII(auth_info_->scheme, "basic")) {
435 } else if (LowerCaseEqualsASCII(auth_info_->scheme, "digest")) {
440 std::string host_and_port(WideToASCII(auth_info_->host_and_port));
441 if (auth_info_->is_proxy) {
453 dialog_form.signon_realm = GetSignonRealm(dialog_form.origin, *auth_info_);
463 scoped_refptr<net::AuthChallengeInfo> auth_info_; member in class:LoginDialogTask
    [all...]
login_prompt.h 78 const net::AuthChallengeInfo* auth_info() const { return auth_info_.get(); }
131 scoped_refptr<net::AuthChallengeInfo> auth_info_; member in class:LoginHandler
  /external/chromium/net/http/
http_auth_controller.h 56 // otherwise. It may also populate |auth_info_|.
106 // Populates auth_info_ with the challenge information, so that
145 scoped_refptr<AuthChallengeInfo> auth_info_; member in class:net::HttpAuthController
http_auth_controller.cc 363 auth_info_ = NULL;
495 auth_info_ = new AuthChallengeInfo;
496 auth_info_->is_proxy = target_ == HttpAuth::AUTH_PROXY;
497 auth_info_->host_and_port = ASCIIToWide(GetHostAndPort(auth_origin_));
498 auth_info_->scheme = ASCIIToWide(
501 auth_info_->realm = ASCIIToWide(handler_->realm());
547 return auth_info_;
  /external/chromium/net/socket_stream/
socket_stream.cc 753 auth_info_ = new AuthChallengeInfo;
754 auth_info_->is_proxy = true;
755 auth_info_->host_and_port =
757 auth_info_->scheme = ASCIIToWide(
759 auth_info_->realm = ASCIIToWide(auth_handler_->realm());
990 if (delegate_ && auth_info_.get())
991 delegate_->OnAuthRequired(this, auth_info_.get());
    [all...]
socket_stream.h 293 scoped_refptr<AuthChallengeInfo> auth_info_; member in class:net::SocketStream

Completed in 43 milliseconds