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

Side by Side Diff: components/download/internal/test/test_download_driver.h

Issue 2880933002: Download driver for components/download. (Closed)
Patch Set: Polish comment. Created 3 years, 7 months 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_DOWNLOAD_INTERNAL_TEST_TEST_DOWNLOAD_DRIVER_H_
6 #define COMPONENTS_DOWNLOAD_INTERNAL_TEST_TEST_DOWNLOAD_DRIVER_H_
7
8 #include <map>
9 #include <memory>
10
11 #include "base/macros.h"
12 #include "components/download/internal/download_driver.h"
13
14 namespace download {
15
16 // Download driver that simulates content layer download logic.
17 class TestDownloadDriver : public DownloadDriver {
18 public:
19 TestDownloadDriver();
20 ~TestDownloadDriver();
21
22 // Marks download driver as ready, used to test logic that depends on
23 // data initialization.
24 void MakeReady();
25
26 // Simulates download events from content layer.
27 void NotifyDownloadUpdate(const DriverEntry& entry);
28 void NotifyDownloadFailed(const DriverEntry& entry, int reason);
29 void NotifyDownloadSucceeded(const DriverEntry& entry,
30 const base::FilePath& path);
31
32 // DownloadDriver implementation.
33 void Initialize(DownloadDriver::Client* client) override;
34 bool IsReady() const override;
35 void Start(const DownloadParams& params) override;
36 void Cancel(const std::string& guid) override;
37 void Pause(const std::string& guid) override;
38 void Resume(const std::string& guid) override;
39 base::Optional<DriverEntry> Find(const std::string& guid) override;
40
41 private:
42 bool is_ready_;
43 DownloadDriver::Client* client_;
44
45 // Map of guid --> DriverEntry.
46 std::map<std::string, DriverEntry> entries_;
47
48 DISALLOW_COPY_AND_ASSIGN(TestDownloadDriver);
49 };
50
51 } // namespace download
52
53 #endif // COMPONENTS_DOWNLOAD_CONTENT_TEST_TEST_DOWNLOAD_DRIVER_H_
OLDNEW
« no previous file with comments | « components/download/internal/test/BUILD.gn ('k') | components/download/internal/test/test_download_driver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698