HomeSort by relevance Sort by last modified time
    Searched refs:defer (Results 1 - 25 of 163) 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 WillStartUsingNetwork(bool* defer) {}
27 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) {}
28 virtual void WillProcessResponse(bool* defer) {}
  /external/chromium_org/content/browser/loader/
throttling_resource_handler.cc 37 bool* defer) {
40 *defer = false;
43 throttles_[index]->WillRedirectRequest(redirect_info.new_url, defer);
47 if (*defer) {
58 return next_handler_->OnRequestRedirected(redirect_info, response, defer);
61 bool ThrottlingResourceHandler::OnWillStart(const GURL& url, bool* defer) {
64 *defer = false;
67 throttles_[index]->WillStartRequest(defer);
71 if (*defer) {
81 return next_handler_->OnWillStart(url, defer);
178 bool defer = false; local
192 bool defer = false; local
208 bool defer = false; local
222 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 41 bool* defer) {
43 return next_handler_->OnRequestRedirected(redirect_info, response, defer);
47 bool* defer) {
49 return next_handler_->OnResponseStarted(response, defer);
53 bool* defer) {
55 return next_handler_->OnWillStart(url, defer);
59 bool* defer) {
61 return next_handler_->OnBeforeNetworkStart(url, defer);
71 bool LayeredResourceHandler::OnReadCompleted(int bytes_read, bool* defer) {
73 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 36 bool* defer) OVERRIDE;
38 bool* defer) OVERRIDE;
40 bool* defer) OVERRIDE;
43 bool* defer) OVERRIDE;
67 // Defer the navigation to the UI thread to check whether transfer is required
71 bool* defer);
75 bool* defer,
79 bool* defer);
84 // Called when about to defer a request. Sets |did_defer_| and logs the
cross_site_resource_handler.cc 129 bool* defer) {
132 return next_handler_->OnRequestRedirected(redirect_info, response, defer);
137 bool* defer) {
157 return OnNavigationTransitionResponseStarted(response, defer,
160 return OnNormalResponseStarted(response, defer);
166 bool* defer) {
193 return DeferForNavigationPolicyCheck(info, response, defer);
214 return next_handler_->OnResponseStarted(response, defer);
221 // Defer loading until after the new renderer process has issued a
223 *defer = true
251 bool defer = false; local
305 bool defer = false; local
321 bool defer = false; local
    [all...]
throttling_resource_handler.h 37 bool* defer) OVERRIDE;
39 bool* defer) OVERRIDE;
40 virtual bool OnWillStart(const GURL& url, bool* defer) OVERRIDE;
41 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 42 bool* defer) OVERRIDE;
44 bool* defer) OVERRIDE;
45 virtual bool OnWillStart(const GURL& url, bool* defer) OVERRIDE;
46 virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) OVERRIDE;
50 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE;
53 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 41 bool* defer) OVERRIDE;
45 bool* defer) OVERRIDE;
48 virtual bool OnWillStart(const GURL& url, bool* defer) OVERRIDE;
51 virtual bool OnBeforeNetworkStart(const GURL& url, bool* defer) OVERRIDE;
59 virtual bool OnReadCompleted(int bytes_read, bool* defer) OVERRIDE;
64 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 51 // The request was redirected to a new URL. |*defer| has an initial value of
52 // false. Set |*defer| to true to defer the redirect. The redirect may be
57 bool* defer) = 0;
60 // false, then the request is cancelled. Set |*defer| to true to defer
63 virtual bool OnResponseStarted(ResourceResponse* response, bool* defer) = 0;
68 // starting by setting |*defer = true|. A deferred request will not have
71 virtual bool OnWillStart(const GURL& url, bool* defer) = 0;
76 // 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 42 bool* defer) {
47 bool* defer) {
51 bool StreamResourceHandler::OnWillStart(const GURL& url, bool* defer) {
55 bool StreamResourceHandler::OnBeforeNetworkStart(const GURL& url, bool* defer) {
73 bool StreamResourceHandler::OnReadCompleted(int bytes_read, bool* defer) {
87 *defer = true;
95 bool* defer) {
detachable_resource_handler.cc 50 // If |next_handler_| were to defer its shutdown in OnResponseCompleted,
100 bool* defer) {
108 *defer = is_deferred_;
113 bool* defer) {
121 *defer = is_deferred_;
125 bool DetachableResourceHandler::OnWillStart(const GURL& url, bool* defer) {
132 *defer = is_deferred_;
137 bool* defer) {
145 *defer = is_deferred_;
164 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/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 155 void ThrottleWillStartRequest(bool* defer) {
157 throttle_->WillStartRequest(defer);
160 void ThrottleWillRedirectRequest(const GURL& new_url, bool* defer) {
162 throttle_->WillRedirectRequest(new_url, defer);
217 bool* defer) {
227 io_thread_state->ThrottleWillStartRequest(defer);
229 io_thread_state->ThrottleWillRedirectRequest(url, defer);
240 bool* defer) {
260 base::Unretained(defer)));
283 bool defer = false local
293 bool defer = false; local
303 bool defer = false; local
345 bool defer = false; local
369 bool defer = false; local
398 bool defer = false; local
426 bool defer = false; local
454 bool defer = false; local
    [all...]
  /external/chromium_org/chrome/browser/component_updater/
component_updater_resource_throttle.cc 34 virtual void WillStartRequest(bool* defer) OVERRIDE;
35 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE;
57 void CUResourceThrottle::WillStartRequest(bool* defer) {
60 *defer = true;
62 *defer = false;
66 void CUResourceThrottle::WillRedirectRequest(const GURL& new_url, bool* defer) {
67 WillStartRequest(defer);

Completed in 610 milliseconds

1 2 3 4 5 6 7