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

  /external/chromium_org/ppapi/tests/
test_url_request.cc 23 REGISTER_TEST_CASE(URLRequest);
  /external/chromium/net/url_request/
url_request.cc 63 // URLRequest::Interceptor
65 URLRequestJob* URLRequest::Interceptor::MaybeInterceptRedirect(
66 URLRequest* request,
71 URLRequestJob* URLRequest::Interceptor::MaybeInterceptResponse(
72 URLRequest* request) {
77 // URLRequest::Delegate
79 void URLRequest::Delegate::OnReceivedRedirect(URLRequest* request,
84 void URLRequest::Delegate::OnAuthRequired(URLRequest* request
    [all...]
url_request.h 56 // allocated in any special way. It is also valid to delete an URLRequest
58 // the URLRequest is deleted, no further callbacks to its delegate will occur.
62 class NET_EXPORT URLRequest : public base::NonThreadSafe {
68 typedef URLRequestJob* (ProtocolFactory)(URLRequest* request,
80 // information with a URLRequest. Use GetUserData(key) and SetUserData()
96 virtual URLRequestJob* MaybeIntercept(URLRequest* request) = 0;
104 virtual URLRequestJob* MaybeInterceptRedirect(URLRequest* request,
115 virtual URLRequestJob* MaybeInterceptResponse(URLRequest* request);
156 // followed once FollowDeferredRedirect is called on the URLRequest.
161 virtual void OnReceivedRedirect(URLRequest* request
    [all...]
  /external/chromium_org/net/url_request/
url_request.cc 72 // True once the first URLRequest was started.
78 // When the URLRequest first assempts load timing information, it has the times
142 URLRequest::ProtocolFactory*
143 URLRequest::Deprecated::RegisterProtocolFactory(const std::string& scheme,
145 return URLRequest::RegisterProtocolFactory(scheme, factory);
148 void URLRequest::Deprecated::RegisterRequestInterceptor(
150 URLRequest::RegisterRequestInterceptor(interceptor);
153 void URLRequest::Deprecated::UnregisterRequestInterceptor(
155 URLRequest::UnregisterRequestInterceptor(interceptor);
159 // URLRequest::Intercepto
    [all...]
url_request.h 96 // allocated in any special way. It is also valid to delete an URLRequest
98 // the URLRequest is deleted, no further callbacks to its delegate will occur.
102 class NET_EXPORT URLRequest : NON_EXPORTED_BASE(public base::NonThreadSafe),
109 typedef URLRequestJob* (ProtocolFactory)(URLRequest* request,
123 // HTTP. This is the default behavior of URLRequest, corresponding to
146 URLRequest* request, NetworkDelegate* network_delegate) = 0;
155 URLRequest* request,
168 URLRequest* request, NetworkDelegate* network_delegate);
171 // Deprecated interfaces in net::URLRequest. They have been moved to
172 // URLRequest's private section to prevent new uses. Existing uses ar
    [all...]

Completed in 2960 milliseconds