OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_IMPL_H_ |
6 #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_IMPL_H_ | 6 #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_IMPL_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "base/synchronization/lock.h" | 22 #include "base/synchronization/lock.h" |
23 #include "content/browser/download/download_item_impl_delegate.h" | 23 #include "content/browser/download/download_item_impl_delegate.h" |
24 #include "content/browser/download/url_downloader.h" | 24 #include "content/browser/download/url_downloader.h" |
25 #include "content/common/content_export.h" | 25 #include "content/common/content_export.h" |
26 #include "content/public/browser/browser_thread.h" | 26 #include "content/public/browser/browser_thread.h" |
27 #include "content/public/browser/download_manager.h" | 27 #include "content/public/browser/download_manager.h" |
28 #include "content/public/browser/download_manager_delegate.h" | 28 #include "content/public/browser/download_manager_delegate.h" |
29 #include "content/public/browser/download_url_parameters.h" | 29 #include "content/public/browser/download_url_parameters.h" |
30 | 30 |
31 namespace net { | 31 namespace net { |
32 class NetLogWithSource; | 32 class NetLog; |
33 } | 33 } |
34 | 34 |
35 namespace content { | 35 namespace content { |
36 class DownloadFileFactory; | 36 class DownloadFileFactory; |
37 class DownloadItemFactory; | 37 class DownloadItemFactory; |
38 class DownloadItemImpl; | 38 class DownloadItemImpl; |
39 class DownloadRequestHandleInterface; | 39 class DownloadRequestHandleInterface; |
40 class ResourceContext; | 40 class ResourceContext; |
41 | 41 |
42 class CONTENT_EXPORT DownloadManagerImpl : public DownloadManager, | 42 class CONTENT_EXPORT DownloadManagerImpl : public DownloadManager, |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 url_downloaders_; | 239 url_downloaders_; |
240 | 240 |
241 base::WeakPtrFactory<DownloadManagerImpl> weak_factory_; | 241 base::WeakPtrFactory<DownloadManagerImpl> weak_factory_; |
242 | 242 |
243 DISALLOW_COPY_AND_ASSIGN(DownloadManagerImpl); | 243 DISALLOW_COPY_AND_ASSIGN(DownloadManagerImpl); |
244 }; | 244 }; |
245 | 245 |
246 } // namespace content | 246 } // namespace content |
247 | 247 |
248 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_IMPL_H_ | 248 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_IMPL_H_ |
OLD | NEW |