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

Side by Side Diff: components/download/internal/noop_store.h

Issue 2870753003: Add a Model to the download component. (Closed)
Patch Set: Renamed test base class 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_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_
OLDNEW
« no previous file with comments | « components/download/internal/model_impl_unittest.cc ('k') | components/download/internal/noop_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698