Searched defs:HTTPSProber (Results 1 - 2 of 2) sorted by relevance

/external/chromium/net/url_request/
H A Dhttps_prober.h22 // 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 { class in namespace:net
38 static HTTPSProber* GetInstance();
66 friend struct DefaultSingletonTraits<HTTPSProber>;
68 HTTPSProber();
69 ~HTTPSProber();
78 DISALLOW_COPY_AND_ASSIGN(HTTPSProber);
H A Dhttps_prober.cc14 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
66 HTTPSProber::HTTPSProber() { function in class:net::HTTPSProber
[all...]

Completed in 483 milliseconds