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

  /external/chromium/net/url_request/
https_prober.h 22 // This should be scoped inside HTTPSProber, but VC cannot compile
23 // HTTPProber::Delegate when HTTPSProber also inherits from
32 // HTTPSProber is a singleton object that manages HTTPS probes. A HTTPS probe
35 class HTTPSProber : public URLRequest::Delegate {
38 static HTTPSProber* GetInstance();
66 friend struct DefaultSingletonTraits<HTTPSProber>;
68 HTTPSProber();
69 ~HTTPSProber();
78 DISALLOW_COPY_AND_ASSIGN(HTTPSProber);
https_prober.cc 14 HTTPSProber* HTTPSProber::GetInstance() {
15 return Singleton<HTTPSProber>::get();
18 bool HTTPSProber::HaveProbed(const std::string& host) const {
22 bool HTTPSProber::InFlight(const std::string& host) const {
26 bool HTTPSProber::ProbeHost(const std::string& host, URLRequestContext* ctx,
43 void HTTPSProber::OnAuthRequired(URLRequest* request,
48 void HTTPSProber::OnSSLCertificateError(URLRequest* request,
54 void HTTPSProber::OnResponseStarted(URLRequest* request) {
62 void HTTPSProber::OnReadCompleted(URLRequest* request, int bytes_read)
    [all...]

Completed in 31 milliseconds