| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 COMPONENTS_DOWNLOAD_INTERNAL_TEST_TEST_DOWNLOAD_DRIVER_H_ | 5 #ifndef COMPONENTS_DOWNLOAD_INTERNAL_TEST_TEST_DOWNLOAD_DRIVER_H_ |
| 6 #define COMPONENTS_DOWNLOAD_INTERNAL_TEST_TEST_DOWNLOAD_DRIVER_H_ | 6 #define COMPONENTS_DOWNLOAD_INTERNAL_TEST_TEST_DOWNLOAD_DRIVER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "components/download/internal/download_driver.h" | 12 #include "components/download/internal/download_driver.h" |
| 13 | 13 |
| 14 namespace download { | 14 namespace download { |
| 15 namespace test { |
| 15 | 16 |
| 16 // Download driver that simulates content layer download logic. | 17 // Download driver that simulates content layer download logic. |
| 17 class TestDownloadDriver : public DownloadDriver { | 18 class TestDownloadDriver : public DownloadDriver { |
| 18 public: | 19 public: |
| 19 TestDownloadDriver(); | 20 TestDownloadDriver(); |
| 20 ~TestDownloadDriver(); | 21 ~TestDownloadDriver() override; |
| 21 | 22 |
| 22 // Marks download driver as ready, used to test logic that depends on | 23 // Marks download driver as ready, used to test logic that depends on |
| 23 // data initialization. | 24 // data initialization. |
| 24 void MakeReady(); | 25 void MakeReady(); |
| 25 | 26 |
| 26 // Simulates download events from content layer. | 27 // Simulates download events from content layer. |
| 27 void NotifyDownloadUpdate(const DriverEntry& entry); | 28 void NotifyDownloadUpdate(const DriverEntry& entry); |
| 28 void NotifyDownloadFailed(const DriverEntry& entry, int reason); | 29 void NotifyDownloadFailed(const DriverEntry& entry, int reason); |
| 29 void NotifyDownloadSucceeded(const DriverEntry& entry, | 30 void NotifyDownloadSucceeded(const DriverEntry& entry, |
| 30 const base::FilePath& path); | 31 const base::FilePath& path); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 41 private: | 42 private: |
| 42 bool is_ready_; | 43 bool is_ready_; |
| 43 DownloadDriver::Client* client_; | 44 DownloadDriver::Client* client_; |
| 44 | 45 |
| 45 // Map of guid --> DriverEntry. | 46 // Map of guid --> DriverEntry. |
| 46 std::map<std::string, DriverEntry> entries_; | 47 std::map<std::string, DriverEntry> entries_; |
| 47 | 48 |
| 48 DISALLOW_COPY_AND_ASSIGN(TestDownloadDriver); | 49 DISALLOW_COPY_AND_ASSIGN(TestDownloadDriver); |
| 49 }; | 50 }; |
| 50 | 51 |
| 52 } // namespace test |
| 51 } // namespace download | 53 } // namespace download |
| 52 | 54 |
| 53 #endif // COMPONENTS_DOWNLOAD_CONTENT_TEST_TEST_DOWNLOAD_DRIVER_H_ | 55 #endif // COMPONENTS_DOWNLOAD_CONTENT_TEST_TEST_DOWNLOAD_DRIVER_H_ |
| OLD | NEW |