HomeSort by relevance Sort by last modified time
    Searched refs:defer (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/chrome/browser/download/
download_resource_throttle.cc 32 void DownloadResourceThrottle::WillStartRequest(bool* defer) {
33 WillDownload(defer);
37 bool* defer) {
38 WillDownload(defer);
41 void DownloadResourceThrottle::WillProcessResponse(bool* defer) {
42 WillDownload(defer);
49 void DownloadResourceThrottle::WillDownload(bool* defer) {
52 // Defer the download until we have the DownloadRequestLimiter result.
55 *defer = true;
download_resource_throttle.h 32 virtual void WillStartRequest(bool* defer) OVERRIDE;
33 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE;
34 virtual void WillProcessResponse(bool* defer) OVERRIDE;
40 void WillDownload(bool* defer);
  /external/chromium_org/content/public/browser/
resource_throttle.h 17 // loading a resource. At each stage, it has the opportunity to defer the
25 virtual void WillStartRequest(bool* defer) {}
26 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) {}
27 virtual void WillProcessResponse(bool* defer) {}
28 virtual void OnBeforeNetworkStart(bool* defer) {}
  /external/chromium_org/content/browser/loader/
throttling_resource_handler.cc 36 bool* defer) {
39 *defer = false;
42 throttles_[index]->WillRedirectRequest(new_url, defer);
46 if (*defer) {
57 return next_handler_->OnRequestRedirected(new_url, response, defer);
60 bool ThrottlingResourceHandler::OnWillStart(const GURL& url, bool* defer) {
63 *defer = false;
66 throttles_[index]->WillStartRequest(defer);
70 if (*defer) {
80 return next_handler_->OnWillStart(url, defer);
177 bool defer = false; local
191 bool defer = false; local
207 bool defer = false; local
221 bool defer = false; local
    [all...]
layered_resource_handler.h 31 bool* defer) OVERRIDE;
33 bool* defer) OVERRIDE;
34 virtual bool OnWillStart(const GURL& url, bool* defer) OVERRIDE;
35 virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) OVERRIDE;
40 bool* defer) OVERRIDE;
43 bool* defer) OVERRIDE;
layered_resource_handler.cc 40 bool* defer) {
42 return next_handler_->OnRequestRedirected(url, response, defer);
46 bool* defer) {
48 return next_handler_->OnResponseStarted(response, defer);
52 bool* defer) {
54 return next_handler_->OnWillStart(url, defer);
58 bool* defer) {
60 return next_handler_->OnBeforeNetworkStart(url, defer);
70 bool LayeredResourceHandler::OnReadCompleted(int bytes_read, bool* defer) {
72 return next_handler_->OnReadCompleted(bytes_read, defer);
    [all...]
power_save_block_resource_throttle.h 25 virtual void WillStartRequest(bool* defer) OVERRIDE;
26 virtual void WillProcessResponse(bool* defer) OVERRIDE;
cross_site_resource_handler.h 34 bool* defer) OVERRIDE;
36 bool* defer) OVERRIDE;
38 bool* defer) OVERRIDE;
41 bool* defer) OVERRIDE;
58 // Defer the navigation to the UI thread to check whether transfer is required
62 bool* defer);
67 // Called when about to defer a request. Sets |did_defer_| and logs the
throttling_resource_handler.h 36 bool* defer) OVERRIDE;
38 bool* defer) OVERRIDE;
39 virtual bool OnWillStart(const GURL& url, bool* defer) OVERRIDE;
40 virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) OVERRIDE;
power_save_block_resource_throttle.cc 23 void PowerSaveBlockResourceThrottle::WillStartRequest(bool* defer) {
31 void PowerSaveBlockResourceThrottle::WillProcessResponse(bool* defer) {
async_resource_handler.h 41 bool* defer) OVERRIDE;
43 bool* defer) OVERRIDE;
44 virtual bool OnWillStart(const GURL& url, bool* defer) OVERRIDE;
45 virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) OVERRIDE;
49 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE;
52 bool* defer) OVERRIDE;
buffered_resource_handler.h 37 bool* defer) OVERRIDE;
41 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE;
44 bool* defer) OVERRIDE;
52 bool ProcessResponse(bool* defer);
56 bool SelectNextHandler(bool* defer);
60 bool ReplayReadCompleted(bool* defer);
certificate_resource_handler.h 42 bool* defer) OVERRIDE;
46 bool* defer) OVERRIDE;
49 virtual bool OnWillStart(const GURL& url, bool* defer) OVERRIDE;
52 virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) OVERRIDE;
60 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE;
65 bool* defer) OVERRIDE;
detachable_resource_handler.h 54 bool* defer) OVERRIDE;
56 bool* defer) OVERRIDE;
57 virtual bool OnWillStart(const GURL& url, bool* defer) OVERRIDE;
58 virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) OVERRIDE;
62 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE;
65 bool* defer) OVERRIDE;
resource_handler.h 50 // The request was redirected to a new URL. |*defer| has an initial value of
51 // false. Set |*defer| to true to defer the redirect. The redirect may be
56 bool* defer) = 0;
59 // false, then the request is cancelled. Set |*defer| to true to defer
62 virtual bool OnResponseStarted(ResourceResponse* response, bool* defer) = 0;
67 // starting by setting |*defer = true|. A deferred request will not have
70 virtual bool OnWillStart(const GURL& url, bool* defer) = 0;
75 // ResourceHandler can delay the request from starting by setting |*defer
    [all...]
stream_resource_handler.h 39 bool* defer) OVERRIDE;
42 bool* defer) OVERRIDE;
44 virtual bool OnWillStart(const GURL& url, bool* defer) OVERRIDE;
46 virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) OVERRIDE;
54 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE;
58 bool* defer) OVERRIDE;
sync_resource_handler.h 39 bool* defer) OVERRIDE;
41 bool* defer) OVERRIDE;
42 virtual bool OnWillStart(const GURL& url, bool* defer) OVERRIDE;
43 virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) OVERRIDE;
47 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE;
50 bool* defer) OVERRIDE;
stream_resource_handler.cc 41 bool* defer) {
46 bool* defer) {
50 bool StreamResourceHandler::OnWillStart(const GURL& url, bool* defer) {
54 bool StreamResourceHandler::OnBeforeNetworkStart(const GURL& url, bool* defer) {
72 bool StreamResourceHandler::OnReadCompleted(int bytes_read, bool* defer) {
86 *defer = true;
94 bool* defer) {
cross_site_resource_handler.cc 122 bool* defer) {
130 return next_handler_->OnRequestRedirected(new_url, response, defer);
135 bool* defer) {
161 return DeferForNavigationPolicyCheck(info, response, defer);
186 return next_handler_->OnResponseStarted(response, defer);
194 // Defer loading until after the onunload event handler has run.
195 *defer = true;
208 bool CrossSiteResourceHandler::OnReadCompleted(int bytes_read, bool* defer) {
210 return next_handler_->OnReadCompleted(bytes_read, defer);
216 bool* defer) {
258 bool defer = false; local
274 bool defer = false; local
    [all...]
detachable_resource_handler.cc 49 // If |next_handler_| were to defer its shutdown in OnResponseCompleted,
94 bool* defer) {
101 *defer = is_deferred_;
106 bool* defer) {
114 *defer = is_deferred_;
118 bool DetachableResourceHandler::OnWillStart(const GURL& url, bool* defer) {
125 *defer = is_deferred_;
130 bool* defer) {
138 *defer = is_deferred_;
157 bool DetachableResourceHandler::OnReadCompleted(int bytes_read, bool* defer) {
    [all...]
  /external/chromium_org/chrome/browser/supervised_user/
supervised_user_resource_throttle.h 27 virtual void WillStartRequest(bool* defer) OVERRIDE;
29 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE;
36 bool* defer);
supervised_user_resource_throttle.cc 31 bool* defer) {
41 *defer = true;
52 void SupervisedUserResourceThrottle::WillStartRequest(bool* defer) {
53 ShowInterstitialIfNeeded(false, request_->url(), defer);
57 bool* defer) {
58 ShowInterstitialIfNeeded(true, new_url, defer);
  /external/chromium_org/chrome/browser/android/
intercept_download_resource_throttle.h 28 virtual void WillStartRequest(bool* defer) OVERRIDE;
29 virtual void WillProcessResponse(bool* defer) OVERRIDE;
  /external/chromium_org/content/browser/download/
save_file_resource_handler.h 38 bool* defer) OVERRIDE;
42 bool* defer) OVERRIDE;
45 virtual bool OnWillStart(const GURL& url, bool* defer) OVERRIDE;
48 virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) OVERRIDE;
57 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE;
61 bool* defer) OVERRIDE;
  /external/chromium_org/components/navigation_interception/
intercept_navigation_resource_throttle_unittest.cc 154 void ThrottleWillStartRequest(bool* defer) {
156 throttle_->WillStartRequest(defer);
159 void ThrottleWillRedirectRequest(const GURL& new_url, bool* defer) {
161 throttle_->WillRedirectRequest(new_url, defer);
216 bool* defer) {
226 io_thread_state->ThrottleWillStartRequest(defer);
228 io_thread_state->ThrottleWillRedirectRequest(url, defer);
239 bool* defer) {
259 base::Unretained(defer)));
282 bool defer = false local
292 bool defer = false; local
302 bool defer = false; local
344 bool defer = false; local
368 bool defer = false; local
397 bool defer = false; local
425 bool defer = false; local
453 bool defer = false; local
    [all...]

Completed in 1611 milliseconds

1 2 3 4 5 6 7