| 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 <set> | 10 #include <set> |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 void DownloadUrl(scoped_ptr<DownloadUrlParameters> params) override; | 81 void DownloadUrl(scoped_ptr<DownloadUrlParameters> params) override; |
| 82 void AddObserver(Observer* observer) override; | 82 void AddObserver(Observer* observer) override; |
| 83 void RemoveObserver(Observer* observer) override; | 83 void RemoveObserver(Observer* observer) override; |
| 84 content::DownloadItem* CreateDownloadItem( | 84 content::DownloadItem* CreateDownloadItem( |
| 85 const std::string& guid, | 85 const std::string& guid, |
| 86 uint32_t id, | 86 uint32_t id, |
| 87 const base::FilePath& current_path, | 87 const base::FilePath& current_path, |
| 88 const base::FilePath& target_path, | 88 const base::FilePath& target_path, |
| 89 const std::vector<GURL>& url_chain, | 89 const std::vector<GURL>& url_chain, |
| 90 const GURL& referrer_url, | 90 const GURL& referrer_url, |
| 91 const GURL& tab_url, |
| 92 const GURL& tab_refererr_url, |
| 91 const std::string& mime_type, | 93 const std::string& mime_type, |
| 92 const std::string& original_mime_type, | 94 const std::string& original_mime_type, |
| 93 const base::Time& start_time, | 95 const base::Time& start_time, |
| 94 const base::Time& end_time, | 96 const base::Time& end_time, |
| 95 const std::string& etag, | 97 const std::string& etag, |
| 96 const std::string& last_modified, | 98 const std::string& last_modified, |
| 97 int64_t received_bytes, | 99 int64_t received_bytes, |
| 98 int64_t total_bytes, | 100 int64_t total_bytes, |
| 99 const std::string& hash, | 101 const std::string& hash, |
| 100 content::DownloadItem::DownloadState state, | 102 content::DownloadItem::DownloadState state, |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 url_downloaders_; | 222 url_downloaders_; |
| 221 | 223 |
| 222 base::WeakPtrFactory<DownloadManagerImpl> weak_factory_; | 224 base::WeakPtrFactory<DownloadManagerImpl> weak_factory_; |
| 223 | 225 |
| 224 DISALLOW_COPY_AND_ASSIGN(DownloadManagerImpl); | 226 DISALLOW_COPY_AND_ASSIGN(DownloadManagerImpl); |
| 225 }; | 227 }; |
| 226 | 228 |
| 227 } // namespace content | 229 } // namespace content |
| 228 | 230 |
| 229 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_IMPL_H_ | 231 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_MANAGER_IMPL_H_ |
| OLD | NEW |