Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(409)

Unified Diff: content/browser/download/url_downloader.h

Issue 1418663010: Adding WebContent-free Download (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing nits. Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/download/url_downloader.h
diff --git a/content/browser/download/url_downloader.h b/content/browser/download/url_downloader.h
new file mode 100644
index 0000000000000000000000000000000000000000..c9850920bd433927d34a4cab1999fcb89a64669d
--- /dev/null
+++ b/content/browser/download/url_downloader.h
@@ -0,0 +1,62 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_BROWSER_DOWNLOAD_URL_DOWNLOADER_H_
+#define CONTENT_BROWSER_DOWNLOAD_URL_DOWNLOADER_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/weak_ptr.h"
+#include "content/browser/download/download_request_core.h"
+#include "content/public/browser/download_save_info.h"
+#include "content/public/browser/download_url_parameters.h"
+#include "content/public/common/referrer.h"
+#include "net/url_request/redirect_info.h"
+#include "net/url_request/url_request.h"
+
+namespace content {
+class DownloadManagerImpl;
+class DownloadRequestCore;
+
+class UrlDownloader : public net::URLRequest::Delegate {
+ public:
+ UrlDownloader(scoped_ptr<net::URLRequest> request,
+ scoped_ptr<DownloadRequestCore> handler,
+ base::WeakPtr<DownloadManagerImpl> manager);
+ ~UrlDownloader() override;
+
+ static scoped_ptr<UrlDownloader> BeginDownload(
+ base::WeakPtr<DownloadManagerImpl> download_manager,
+ scoped_ptr<net::URLRequest> request,
+ const Referrer& referrer,
+ bool is_content_initiated,
+ bool prefer_cache,
+ bool do_not_prompt_for_login,
+ scoped_ptr<DownloadSaveInfo> save_info,
+ uint32 download_id,
+ const DownloadUrlParameters::OnStartedCallback& started_callback);
+
+ // URLRequest::Delegate:
+ void OnReceivedRedirect(net::URLRequest* request,
+ const net::RedirectInfo& redirect_info,
+ bool* defer_redirect) override;
+ void OnResponseStarted(net::URLRequest* request) override;
+ void OnReadCompleted(net::URLRequest* request, int bytes_read) override;
+
+ void StartReading(bool is_continuation);
+ void ResponseCompleted();
+
+ void Start();
+ void ResumeReading();
+
+ private:
+ scoped_ptr<net::URLRequest> request_;
+ scoped_ptr<DownloadRequestCore> handler_;
+ base::WeakPtr<DownloadManagerImpl> manager_;
+
+ base::WeakPtrFactory<UrlDownloader> weak_ptr_factory_;
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_DOWNLOAD_URL_DOWNLOADER_H_

Powered by Google App Engine
This is Rietveld 408576698