Home | History | Annotate | Download | only in url_request

Lines Matching refs:request

140       ASSERT_EQ(1, d.response_started_count()) << "request failed: " <<
159 // issuing a CONNECT request with the magic host name "www.redirect.com".
185 // issuing a CONNECT request with the magic host name "www.server-auth.com".
256 // An https server is sent a request with an https referer,
415 // We expect to receive OnResponseStarted even though the request has been
479 // The request will be implicitly canceled when it is destroyed. The
544 ASSERT_EQ(1, d.response_started_count()) << "request failed: " <<
589 ASSERT_EQ(1, d.response_started_count()) << "request failed: " <<
799 // returning a page in response to this request rather than reporting failure.
1153 // repeat request with end-to-end validation. since auth-basic results in a
1183 // Request a page that will give a 401 containing a Set-Cookie header.
1519 // But, now we cancel the request. This should not cause a crash.
1561 // These extra request headers should not have been stripped.
1586 explicit RestartTestJob(URLRequest* request)
1587 : URLRequestTestJob(request, true) {}
1598 explicit CancelTestJob(URLRequest* request)
1599 : URLRequestTestJob(request, true) {}
1610 explicit CancelThenRestartTestJob(URLRequest* request)
1611 : URLRequestTestJob(request, true) {
1643 virtual URLRequestJob* MaybeIntercept(URLRequest* request) {
1647 return new RestartTestJob(request);
1652 return new CancelTestJob(request);
1657 return new CancelThenRestartTestJob(request);
1663 return new URLRequestTestJob(request, true);
1669 return new URLRequestTestJob(request,
1675 virtual URLRequestJob* MaybeInterceptRedirect(URLRequest* request,
1680 return new CancelTestJob(request);
1686 return new URLRequestTestJob(request,
1692 virtual URLRequestJob* MaybeInterceptResponse(URLRequest* request) {
1696 return new CancelTestJob(request);
1702 return new URLRequestTestJob(request,
1708 // Whether to intercept the main request, and if so the response to return.
1776 // intercept the main request and respond with a simple response
1812 // intercept the main request and respond with a redirect
1845 // intercept the main request to generate a server error response
1876 // intercept the main request to simulate a network error
1905 // restart the main request
1908 // then intercept the new main request and respond with an OK response
1936 // intercept the main request and cancel from within the restarted job
1954 // Check we see a canceled request
1962 // intercept the main request and respond with a redirect
1986 // Check we see a canceled request
1994 // intercept the main request to simulate a network error
2010 // Check we see a canceled request
2018 // intercept the main request and cancel then restart from within that job
2036 // Check we see a canceled request
2259 // This request should use cached identity from previous request.
2339 // Check that if request overrides the A-L header, the default is not appended.
2364 // Check that if request overrides the A-C header, the default is not appended.