1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_LOADER_DETACHABLE_RESOURCE_HANDLER_H_
6 #define CONTENT_BROWSER_LOADER_DETACHABLE_RESOURCE_HANDLER_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/time/time.h"
13 #include "base/timer/timer.h"
14 #include "content/browser/loader/resource_handler.h"
15 #include "content/public/browser/resource_controller.h"
24 // A ResourceHandler which delegates all calls to the next handler, unless
25 // detached. Once detached, it drives the request to completion itself. This is
26 // used for requests which outlive the owning renderer, such as <link
27 // rel=prefetch> and <a ping>. Requests do not start out detached so, e.g.,
28 // prefetches appear in DevTools and get placed in the renderer's local
29 // cache. If the request does not complete after a timeout on detach, it is
32 // Note that, once detached, the request continues without the original next
33 // handler, so any policy decisions in that handler are skipped.
34 class DetachableResourceHandler
: public ResourceHandler
,
35 public ResourceController
{
37 DetachableResourceHandler(net::URLRequest
* request
,
38 base::TimeDelta cancel_delay
,
39 scoped_ptr
<ResourceHandler
> next_handler
);
40 ~DetachableResourceHandler() override
;
42 bool is_detached() const { return next_handler_
== NULL
; }
45 void set_cancel_delay(base::TimeDelta cancel_delay
) {
46 cancel_delay_
= cancel_delay
;
49 // ResourceHandler implementation:
50 void SetController(ResourceController
* controller
) override
;
51 bool OnUploadProgress(uint64 position
, uint64 size
) override
;
52 bool OnRequestRedirected(const net::RedirectInfo
& redirect_info
,
53 ResourceResponse
* response
,
54 bool* defer
) override
;
55 bool OnResponseStarted(ResourceResponse
* response
, bool* defer
) override
;
56 bool OnWillStart(const GURL
& url
, bool* defer
) override
;
57 bool OnBeforeNetworkStart(const GURL
& url
, bool* defer
) override
;
58 bool OnWillRead(scoped_refptr
<net::IOBuffer
>* buf
,
60 int min_size
) override
;
61 bool OnReadCompleted(int bytes_read
, bool* defer
) override
;
62 void OnResponseCompleted(const net::URLRequestStatus
& status
,
63 const std::string
& security_info
,
64 bool* defer
) override
;
65 void OnDataDownloaded(int bytes_downloaded
) override
;
67 // ResourceController implementation:
68 void Resume() override
;
69 void Cancel() override
;
70 void CancelAndIgnore() override
;
71 void CancelWithError(int error_code
) override
;
74 scoped_ptr
<ResourceHandler
> next_handler_
;
75 scoped_refptr
<net::IOBuffer
> read_buffer_
;
77 scoped_ptr
<base::OneShotTimer
<DetachableResourceHandler
> > detached_timer_
;
78 base::TimeDelta cancel_delay_
;
83 DISALLOW_COPY_AND_ASSIGN(DetachableResourceHandler
);
86 } // namespace content
88 #endif // CONTENT_BROWSER_LOADER_DETACHABLE_RESOURCE_HANDLER_H_