Home | History | Annotate | Download | only in login

Lines Matching refs:LoginHandler

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.
181 AuthSuppliedLoginNotificationDetails(LoginHandler* handler,
205 // A LoginHandler object (which lives on the calling thread) is returned,
207 // caller must invoke OnRequestCancelled() on this LoginHandler before
209 LoginHandler* CreateLoginPrompt(net::AuthChallengeInfo* auth_info,
212 // Helper to remove the ref from an net::URLRequest to the LoginHandler.