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