HomeSort by relevance Sort by last modified time
    Searched defs:LoginHandler (Results 1 - 2 of 2) 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...]

Completed in 41 milliseconds