1 // Copyright (c) 2012 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_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_
6 #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_
10 #include "base/compiler_specific.h"
11 #include "base/memory/weak_ptr.h"
12 #include "content/browser/download/download_resource_handler.h"
13 #include "content/common/content_export.h"
16 class DownloadManager
;
19 // A handle used by the download system for operations on the URLRequest
20 // or objects conditional on it (e.g. WebContentsImpl).
21 // This class needs to be copyable, so we can pass it across threads and not
22 // worry about lifetime or const-ness.
24 // DownloadRequestHandleInterface is defined for mocking purposes.
25 class CONTENT_EXPORT DownloadRequestHandleInterface
{
27 virtual ~DownloadRequestHandleInterface() {}
29 // These functions must be called on the UI thread.
30 virtual WebContents
* GetWebContents() const = 0;
31 virtual DownloadManager
* GetDownloadManager() const = 0;
33 // Pauses or resumes the matching URL request.
34 virtual void PauseRequest() const = 0;
35 virtual void ResumeRequest() const = 0;
37 // Cancels the request.
38 virtual void CancelRequest() const = 0;
40 // Describes the object.
41 virtual std::string
DebugString() const = 0;
45 class CONTENT_EXPORT DownloadRequestHandle
46 : public DownloadRequestHandleInterface
{
48 ~DownloadRequestHandle() override
;
50 // Create a null DownloadRequestHandle: getters will return null, and
51 // all actions are no-ops.
52 // TODO(rdsmith): Ideally, actions would be forbidden rather than
53 // no-ops, to confirm that no non-testing code actually uses
54 // a null DownloadRequestHandle. But for now, we need the no-op
55 // behavior for unit tests. Long-term, this should be fixed by
56 // allowing mocking of ResourceDispatcherHost in unit tests.
57 DownloadRequestHandle();
59 // Note that |rdh| is required to be non-null.
60 DownloadRequestHandle(const base::WeakPtr
<DownloadResourceHandler
>& handler
,
64 int frame_tree_node_id
);
66 // Implement DownloadRequestHandleInterface interface.
67 WebContents
* GetWebContents() const override
;
68 DownloadManager
* GetDownloadManager() const override
;
69 void PauseRequest() const override
;
70 void ResumeRequest() const override
;
71 void CancelRequest() const override
;
72 std::string
DebugString() const override
;
75 base::WeakPtr
<DownloadResourceHandler
> handler_
;
77 // The ID of the child process that started the download.
80 // The ID of the render view that started the download.
83 // The ID associated with the request used for the download.
87 // The ID of the FrameTreeNode that started the download.
88 int frame_tree_node_id_
;
91 } // namespace content
93 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_