HomeSort by relevance Sort by last modified time
    Searched defs:LoginHandler (Results 1 - 4 of 4) sorted by null

  /external/chromium/chrome/browser/ui/login/
login_prompt.h 30 class LoginHandler : public base::RefCountedThreadSafe<LoginHandler>,
34 LoginHandler(net::AuthChallengeInfo* auth_info, net::URLRequest* request);
35 virtual ~LoginHandler();
37 // Builds the platform specific LoginHandler. Used from within
39 static LoginHandler* Create(net::AuthChallengeInfo* auth_info,
71 // LoginHandlers so that this LoginHandler has the chance to dismiss itself
164 explicit LoginNotificationDetails(LoginHandler* handler)
166 LoginHandler* handler() const { return handler_; }
171 LoginHandler* handler_; // Where to send the response
    [all...]
login_prompt.cc 34 // Helper to remove the ref from an net::URLRequest to the LoginHandler.
71 // LoginHandler
73 LoginHandler::LoginHandler(net::AuthChallengeInfo* auth_info,
84 DCHECK(request_) << "LoginHandler constructed with NULL request";
85 DCHECK(auth_info_) << "LoginHandler constructed with NULL auth info";
87 AddRef(); // matched by LoginHandler::ReleaseSoon().
91 NewRunnableMethod(this, &LoginHandler::AddObservers));
99 LoginHandler::~LoginHandler() {
    [all...]
  /external/chromium_org/chrome/browser/ui/login/
login_prompt.h 32 class LoginHandler : public content::ResourceDispatcherHostLoginDelegate,
36 LoginHandler(net::AuthChallengeInfo* auth_info, net::URLRequest* request);
38 // Builds the platform specific LoginHandler. Used from within
40 static LoginHandler* Create(net::AuthChallengeInfo* auth_info,
68 // LoginHandlers so that this LoginHandler has the chance to dismiss itself
81 virtual ~LoginHandler();
163 explicit LoginNotificationDetails(LoginHandler* handler)
165 LoginHandler* handler() const { return handler_; }
170 LoginHandler* handler_; // Where to send the response.
180 AuthSuppliedLoginNotificationDetails(LoginHandler* handler
    [all...]
login_prompt.cc 43 // Helper to remove the ref from an net::URLRequest to the LoginHandler.
75 // LoginHandler
77 LoginHandler::LoginHandler(net::AuthChallengeInfo* auth_info,
89 DCHECK(request_) << "LoginHandler constructed with NULL request";
90 DCHECK(auth_info_.get()) << "LoginHandler constructed with NULL auth info";
92 AddRef(); // matched by LoginHandler::ReleaseSoon().
96 base::Bind(&LoginHandler::AddObservers, this));
104 void LoginHandler::OnRequestCancelled() {
115 void LoginHandler::SetPasswordForm(const content::PasswordForm& form)
    [all...]

Completed in 862 milliseconds