| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_BROWSER_COMPONENT_UPDATER_CRX_DOWNLOADER_H_ | 5 #ifndef COMPONENTS_COMPONENT_UPDATER_CRX_DOWNLOADER_H_ |
| 6 #define CHROME_BROWSER_COMPONENT_UPDATER_CRX_DOWNLOADER_H_ | 6 #define COMPONENTS_COMPONENT_UPDATER_CRX_DOWNLOADER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/threading/thread_checker.h" | 15 #include "base/threading/thread_checker.h" |
| 16 #include "url/gurl.h" | 16 #include "url/gurl.h" |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 145 |
| 146 std::vector<GURL>::iterator current_url_; | 146 std::vector<GURL>::iterator current_url_; |
| 147 | 147 |
| 148 std::vector<DownloadMetrics> download_metrics_; | 148 std::vector<DownloadMetrics> download_metrics_; |
| 149 | 149 |
| 150 DISALLOW_COPY_AND_ASSIGN(CrxDownloader); | 150 DISALLOW_COPY_AND_ASSIGN(CrxDownloader); |
| 151 }; | 151 }; |
| 152 | 152 |
| 153 } // namespace component_updater | 153 } // namespace component_updater |
| 154 | 154 |
| 155 #endif // CHROME_BROWSER_COMPONENT_UPDATER_CRX_DOWNLOADER_H_ | 155 #endif // COMPONENTS_COMPONENT_UPDATER_CRX_DOWNLOADER_H_ |
| OLD | NEW |