blob: 708a7d9a3e252ac7ebadf297579079262febf16c [file] [log] [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_DOWNLOAD_PUBLIC_COMMON_URL_DOWNLOAD_REQUEST_HANDLE_H_
#define COMPONENTS_DOWNLOAD_PUBLIC_COMMON_URL_DOWNLOAD_REQUEST_HANDLE_H_
#include "base/memory/weak_ptr.h"
#include "base/task/sequenced_task_runner.h"
#include "components/download/public/common/download_export.h"
#include "components/download/public/common/url_download_handler.h"
namespace download {
// Implementation of the DownloadRequestHandleInterface to handle url download.
class COMPONENTS_DOWNLOAD_EXPORT UrlDownloadRequestHandle {
public:
UrlDownloadRequestHandle(
base::WeakPtr<UrlDownloadHandler> downloader,
scoped_refptr<base::SequencedTaskRunner> downloader_task_runner);
UrlDownloadRequestHandle(UrlDownloadRequestHandle&& other);
UrlDownloadRequestHandle& operator=(UrlDownloadRequestHandle&& other);
UrlDownloadRequestHandle(const UrlDownloadRequestHandle&) = delete;
UrlDownloadRequestHandle& operator=(const UrlDownloadRequestHandle&) = delete;
~UrlDownloadRequestHandle();
private:
base::WeakPtr<UrlDownloadHandler> downloader_;
scoped_refptr<base::SequencedTaskRunner> downloader_task_runner_;
};
} // namespace download
#endif // COMPONENTS_DOWNLOAD_PUBLIC_COMMON_URL_DOWNLOAD_REQUEST_HANDLE_H_