/external/chromium_org/content/test/net/ |
url_request_failed_job.h | 17 // This class simulates a URLRequestJob failing with a given error code while 19 class URLRequestFailedJob : public net::URLRequestJob { 48 static net::URLRequestJob* Factory(net::URLRequest* request,
|
url_request_abort_on_end_job.h | 21 class URLRequestAbortOnEndJob : public net::URLRequestJob { 28 // net::URLRequestJob
|
url_request_slow_download_job.h | 21 class URLRequestSlowDownloadJob : public net::URLRequestJob { 37 // net::URLRequestJob methods 45 static net::URLRequestJob* Factory(net::URLRequest* request,
|
/external/chromium_org/net/url_request/ |
url_request_intercepting_job_factory.cc | 21 URLRequestJob* URLRequestInterceptingJobFactory:: 27 URLRequestJob* job = interceptor_->MaybeInterceptRequest(request,
|
url_request_job_manager.cc | 47 URLRequestJob* URLRequestJobManager::CreateJob( 77 URLRequestJob* job = (*i)->MaybeIntercept(request, network_delegate); 83 URLRequestJob* job = job_factory->MaybeCreateJobWithProtocolHandler( 91 URLRequestJob* job = (kBuiltinFactories[i].factory)( 105 URLRequestJob* URLRequestJobManager::MaybeInterceptRedirect( 125 URLRequestJob* job = (*i)->MaybeInterceptRedirect(request, 134 URLRequestJob* URLRequestJobManager::MaybeInterceptResponse( 152 URLRequestJob* job = (*i)->MaybeInterceptResponse(request,
|
ftp_protocol_handler.cc | 28 URLRequestJob* FtpProtocolHandler::MaybeCreateJob(
|
url_request_about_job.cc | 19 : URLRequestJob(request, network_delegate),
|
url_request_error_job.cc | 17 : URLRequestJob(request, network_delegate),
|
url_request_filter_unittest.cc | 23 URLRequestJob* FactoryA(URLRequest* request, 32 URLRequestJob* FactoryB(URLRequest* request, 45 virtual URLRequestJob* MaybeInterceptRequest( 72 scoped_refptr<URLRequestJob> found = 94 scoped_refptr<URLRequestJob> found = 118 scoped_refptr<URLRequestJob> found = 133 scoped_refptr<URLRequestJob> found =
|
url_request_job.h | 43 class NET_EXPORT URLRequestJob 44 : public base::RefCounted<URLRequestJob>, 47 explicit URLRequestJob(URLRequest* request, 78 // subclasses call URLRequestJob::Kill() after doing any additional work. 220 // We invoke URLRequestJob::Kill on suspend (crbug.com/4606). 225 // exist at destruction time of the URLRequestJob, unless they have been 230 friend class base::RefCounted<URLRequestJob>; 231 virtual ~URLRequestJob(); 428 base::WeakPtrFactory<URLRequestJob> weak_factory_; 430 DISALLOW_COPY_AND_ASSIGN(URLRequestJob); [all...] |
url_request_job_factory_impl_unittest.cc | 19 class MockURLRequestJob : public URLRequestJob { 24 : URLRequestJob(request, network_delegate), 51 virtual URLRequestJob* MaybeCreateJob(
|
file_protocol_handler.cc | 24 URLRequestJob* FileProtocolHandler::MaybeCreateJob(
|
url_request_job_factory_impl.h | 32 virtual URLRequestJob* MaybeCreateJobWithProtocolHandler(
|
url_request_redirect_job.h | 18 // A URLRequestJob that will redirect the request to the specified 21 class NET_EXPORT URLRequestRedirectJob : public URLRequestJob {
|
url_request_filter.h | 20 class URLRequestJob; 70 virtual URLRequestJob* MaybeInterceptRequest(
|
url_request_job_unittest.cc | 75 TEST(URLRequestJob, TransactionNotifiedWhenDone) { 95 TEST(URLRequestJob, SyncTransactionNotifiedWhenDone) { 118 TEST(URLRequestJob, SyncSlowTransaction) { 141 TEST(URLRequestJob, RedirectTransactionNotifiedWhenDone) { 161 TEST(URLRequestJob, TransactionNotCachedWhenNetworkDelegateRedirects) {
|
url_request.h | 58 class URLRequestJob; 84 typedef URLRequestJob* (ProtocolFactory)(URLRequest* request, 120 virtual URLRequestJob* MaybeIntercept( 129 virtual URLRequestJob* MaybeInterceptRedirect( 142 virtual URLRequestJob* MaybeInterceptResponse( 675 // Allow the URLRequestJob class to control the is_pending() flag. 678 // Allow the URLRequestJob class to set our status too 683 // Allow the URLRequestJob to redirect this request. Returns OK if 687 // Called by URLRequestJob to allow interception when a redirect occurs. 694 // Allow an interceptor's URLRequestJob to restart this request [all...] |
/external/chromium_org/content/browser/appcache/ |
appcache_interceptor.h | 56 virtual net::URLRequestJob* MaybeIntercept( 59 virtual net::URLRequestJob* MaybeInterceptResponse( 62 virtual net::URLRequestJob* MaybeInterceptRedirect(
|
appcache_interceptor.cc | 101 net::URLRequestJob* AppCacheInterceptor::MaybeIntercept( 109 net::URLRequestJob* AppCacheInterceptor::MaybeInterceptRedirect( 120 net::URLRequestJob* AppCacheInterceptor::MaybeInterceptResponse(
|
/external/chromium_org/android_webview/browser/net/ |
aw_url_request_job_factory.h | 18 // navigation interception and URLRequestJob interception for navigations to 32 virtual net::URLRequestJob* MaybeCreateJobWithProtocolHandler(
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
drive_protocol_handler.cc | 30 net::URLRequestJob* DriveProtocolHandler::MaybeCreateJob(
|
/external/chromium_org/content/browser/service_worker/ |
service_worker_context_request_handler.h | 27 virtual net::URLRequestJob* MaybeCreateJob(
|
service_worker_controllee_request_handler.h | 33 virtual net::URLRequestJob* MaybeCreateJob(
|
/external/chromium_org/webkit/browser/fileapi/ |
file_system_url_request_job_factory.cc | 26 virtual net::URLRequestJob* MaybeCreateJob( 50 net::URLRequestJob* FileSystemProtocolHandler::MaybeCreateJob(
|
/external/chromium_org/content/browser/net/ |
view_http_cache_job_factory.cc | 25 class ViewHttpCacheJob : public net::URLRequestJob { 29 : net::URLRequestJob(request, network_delegate), 36 // net::URLRequestJob implementation. 110 net::URLRequestJob::Kill(); 198 net::URLRequestJob* ViewHttpCacheJobFactory::CreateJobForRequest(
|