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_NOOP_STORE_H_ | 5 #ifndef COMPONENTS_DOWNLOAD_INTERNAL_TEST_NOOP_STORE_H_ |
6 #define COMPONENTS_DOWNLOAD_INTERNAL_NOOP_STORE_H_ | 6 #define COMPONENTS_DOWNLOAD_INTERNAL_TEST_NOOP_STORE_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "components/download/internal/store.h" | 10 #include "components/download/internal/store.h" |
11 | 11 |
12 namespace download { | 12 namespace download { |
13 | 13 |
14 struct Entry; | 14 struct Entry; |
15 | 15 |
16 // A Store implementation that doesn't do anything but honors the interface | 16 // A Store implementation that doesn't do anything but honors the interface |
17 // requirements. | 17 // requirements. |
18 // TODO(dtrainor, shaktisahu): Remove this if it's no longer necessary after the | 18 // TODO(dtrainor, shaktisahu): Remove this if it's no longer necessary after the |
19 // real Store implementation is added. | 19 // real Store implementation is added. |
20 class NoopStore : public Store { | 20 class NoopStore : public Store { |
21 public: | 21 public: |
22 NoopStore(); | 22 NoopStore(); |
23 ~NoopStore() override; | 23 ~NoopStore() override; |
24 | 24 |
25 // Store implementation. | 25 // Store implementation. |
26 bool IsInitialized() override; | 26 bool IsInitialized() override; |
27 void Initialize(InitCallback callback) override; | 27 void Initialize(InitCallback callback) override; |
28 void Destroy(StoreCallback callback) override; | |
29 void Update(const Entry& entry, StoreCallback callback) override; | 28 void Update(const Entry& entry, StoreCallback callback) override; |
30 void Remove(const std::string& guid, StoreCallback callback) override; | 29 void Remove(const std::string& guid, StoreCallback callback) override; |
31 | 30 |
32 private: | 31 private: |
33 void OnInitFinished(InitCallback callback); | 32 void OnInitFinished(InitCallback callback); |
34 | 33 |
35 // Whether or not this Store is 'initialized.' Just gets set to |true| once | 34 // Whether or not this Store is 'initialized.' Just gets set to |true| once |
36 // Initialize() is called. | 35 // Initialize() is called. |
37 bool initialized_; | 36 bool initialized_; |
38 | 37 |
39 base::WeakPtrFactory<NoopStore> weak_ptr_factory_; | 38 base::WeakPtrFactory<NoopStore> weak_ptr_factory_; |
40 | 39 |
41 DISALLOW_COPY_AND_ASSIGN(NoopStore); | 40 DISALLOW_COPY_AND_ASSIGN(NoopStore); |
42 }; | 41 }; |
43 | 42 |
44 } // namespace download | 43 } // namespace download |
45 | 44 |
46 #endif // COMPONENTS_DOWNLOAD_INTERNAL_NOOP_STORE_H_ | 45 #endif // COMPONENTS_DOWNLOAD_INTERNAL_TEST_NOOP_STORE_H_ |
OLD | NEW |