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

1 2 3 4 5 6

  /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);
45 void DownloadResourceThrottle::WillDownload(bool* defer) {
48 // Defer the download until we have the DownloadRequestLimiter result.
51 *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;
39 void WillDownload(bool* defer);
  /external/chromium_org/chrome/browser/managed_mode/
managed_mode_resource_throttle.cc 35 bool* defer) {
45 *defer = true;
53 void ManagedModeResourceThrottle::WillStartRequest(bool* defer) {
54 ShowInterstitialIfNeeded(false, request_->url(), defer);
58 bool* defer) {
59 ShowInterstitialIfNeeded(true, new_url, defer);
managed_mode_resource_throttle.h 29 virtual void WillStartRequest(bool* defer) OVERRIDE;
31 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE;
36 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) {}
  /external/chromium_org/content/browser/loader/
throttling_resource_handler.cc 33 bool* defer) {
37 *defer = false;
39 throttles_[index_]->WillRedirectRequest(new_url, defer);
43 if (*defer) {
54 defer);
59 bool* defer) {
63 *defer = false;
65 throttles_[index_]->WillStartRequest(defer);
69 if (*defer) {
78 return next_handler_->OnWillStart(request_id, url, defer);
146 bool defer = false; local
162 bool defer = false; local
176 bool defer = false; local
    [all...]
power_save_block_resource_throttle.cc 23 void PowerSaveBlockResourceThrottle::WillStartRequest(bool* defer) {
31 void PowerSaveBlockResourceThrottle::WillProcessResponse(bool* defer) {
power_save_block_resource_throttle.h 25 virtual void WillStartRequest(bool* defer) OVERRIDE;
26 virtual void WillProcessResponse(bool* defer) OVERRIDE;
doomed_resource_handler.h 32 bool* defer) OVERRIDE;
35 bool* defer) OVERRIDE;
38 bool* defer) OVERRIDE;
45 bool* defer) OVERRIDE;
layered_resource_handler.h 27 bool* defer) OVERRIDE;
30 bool* defer) OVERRIDE;
32 bool* defer) OVERRIDE;
36 bool* defer) OVERRIDE;
resource_handler.h 48 // The request was redirected to a new URL. |*defer| has an initial value of
49 // false. Set |*defer| to true to defer the redirect. The redirect may be
54 bool* defer) = 0;
57 // false, then the request is cancelled. Set |*defer| to true to defer
62 bool* defer) = 0;
67 // delay the request from starting by setting |*defer = true|. A deferred
70 virtual bool OnWillStart(int request_id, const GURL& url, bool* defer) = 0;
86 // reading data. Set |*defer| to true to defer reading more response data
    [all...]
layered_resource_handler.cc 39 bool* defer) {
41 return next_handler_->OnRequestRedirected(request_id, url, response, defer);
46 bool* defer) {
48 return next_handler_->OnResponseStarted(request_id, response, defer);
52 bool* defer) {
54 return next_handler_->OnWillStart(request_id, url, defer);
64 bool* defer) {
66 return next_handler_->OnReadCompleted(request_id, bytes_read, defer);
cross_site_resource_handler.cc 64 bool* defer) {
68 request_id, new_url, response, defer);
74 bool* defer) {
97 return next_handler_->OnResponseStarted(request_id, response, defer);
103 // Defer loading until after the onunload event handler has run.
104 did_defer_ = *defer = true;
110 bool* defer) {
112 return next_handler_->OnReadCompleted(request_id, bytes_read, defer);
156 bool defer = false; local
157 if (!next_handler_->OnResponseStarted(request_id_, response_, &defer)) {
    [all...]
buffered_resource_handler.h 38 bool* defer) OVERRIDE;
44 bool* defer) OVERRIDE;
55 bool ProcessResponse(bool* defer);
59 bool SelectNextHandler(bool* defer);
62 bool ReplayReadCompleted(bool* defer);
cross_site_resource_handler.h 34 bool* defer) OVERRIDE;
37 bool* defer) OVERRIDE;
40 bool* defer) OVERRIDE;
throttling_resource_handler.h 33 bool* defer) OVERRIDE;
36 bool* defer) OVERRIDE;
38 bool* defer) OVERRIDE;
buffered_resource_handler.cc 110 bool* defer) {
145 return ProcessResponse(defer);
173 bool* defer) {
175 return next_handler_->OnReadCompleted(request_id, bytes_read, defer);
184 return ProcessResponse(defer);
229 bool BufferedResourceHandler::ProcessResponse(bool* defer) {
235 if (!SelectNextHandler(defer))
237 if (*defer)
244 if (!next_handler_->OnResponseStarted(request_id, response_.get(), defer))
252 if (!*defer)
407 bool defer = false; local
465 bool defer = false; local
    [all...]
async_resource_handler.h 46 bool* defer) OVERRIDE;
49 bool* defer) OVERRIDE;
52 bool* defer) OVERRIDE;
59 bool* defer) OVERRIDE;
certificate_resource_handler.h 47 bool* defer) OVERRIDE;
52 bool* defer) OVERRIDE;
57 bool* defer) OVERRIDE;
68 bool* defer) OVERRIDE;
doomed_resource_handler.cc 30 bool* defer) {
37 bool* defer) {
44 bool* defer) {
59 bool* defer) {
stream_resource_handler.h 42 bool* defer) OVERRIDE;
46 bool* defer) OVERRIDE;
50 bool* defer) OVERRIDE;
61 bool* defer) OVERRIDE;
  /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/chrome/browser/prerender/
prerender_resource_handler_unittest.cc 27 bool* defer) {
28 *defer = false;
37 virtual bool OnWillStart(int request_id, const GURL& url, bool* defer) {
38 *defer = false;
125 bool defer = false; local
126 EXPECT_TRUE(pre_handler_->OnWillStart(request_id, default_url_, &defer));
127 EXPECT_FALSE(defer);
179 bool defer = false; local
180 EXPECT_TRUE(pre_handler_->OnWillStart(kRequestId, default_url_, &defer));
181 EXPECT_FALSE(defer);
203 bool defer = false; local
209 bool defer = false; local
    [all...]
  /external/chromium_org/components/navigation_interception/
intercept_navigation_resource_throttle_unittest.cc 148 void ThrottleWillStartRequest(bool* defer) {
150 throttle_->WillStartRequest(defer);
153 void ThrottleWillRedirectRequest(const GURL& new_url, bool* defer) {
155 throttle_->WillRedirectRequest(new_url, defer);
212 bool* defer) {
222 io_thread_state->ThrottleWillStartRequest(defer);
224 io_thread_state->ThrottleWillRedirectRequest(url, defer);
235 bool* defer) {
255 base::Unretained(defer)));
278 bool defer = false local
288 bool defer = false; local
298 bool defer = false; local
340 bool defer = false; local
364 bool defer = false; local
393 bool defer = false; local
421 bool defer = false; local
449 bool defer = false; local
    [all...]
  /external/chromium_org/content/browser/download/
save_file_resource_handler.h 36 bool* defer) OVERRIDE;
41 bool* defer) OVERRIDE;
46 bool* defer) OVERRIDE;
57 bool* defer) OVERRIDE;

Completed in 278 milliseconds

1 2 3 4 5 6