OLD | NEW |
| (Empty) |
1 // Copyright 2016 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_USER_PREFS_TRACKED_PREF_REGISTRY_HASH_STORE_CONTENTS_WIN_H_ | |
6 #define COMPONENTS_USER_PREFS_TRACKED_PREF_REGISTRY_HASH_STORE_CONTENTS_WIN_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "base/strings/string16.h" | |
10 #include "components/user_prefs/tracked/hash_store_contents.h" | |
11 | |
12 // Implements HashStoreContents by storing MACs in the Windows registry. | |
13 class RegistryHashStoreContentsWin : public HashStoreContents { | |
14 public: | |
15 // Constructs a RegistryHashStoreContents which acts on a registry entry | |
16 // defined by |registry_path| and |store_key|. | |
17 explicit RegistryHashStoreContentsWin(const base::string16& registry_path, | |
18 const base::string16& store_key); | |
19 | |
20 // HashStoreContents overrides: | |
21 bool IsCopyable() const override; | |
22 std::unique_ptr<HashStoreContents> MakeCopy() const override; | |
23 base::StringPiece GetUMASuffix() const override; | |
24 void Reset() override; | |
25 bool GetMac(const std::string& path, std::string* out_value) override; | |
26 bool GetSplitMacs(const std::string& path, | |
27 std::map<std::string, std::string>* split_macs) override; | |
28 void SetMac(const std::string& path, const std::string& value) override; | |
29 void SetSplitMac(const std::string& path, | |
30 const std::string& split_path, | |
31 const std::string& value) override; | |
32 bool RemoveEntry(const std::string& path) override; | |
33 | |
34 // Unsupported HashStoreContents overrides: | |
35 void ImportEntry(const std::string& path, | |
36 const base::Value* in_value) override; | |
37 const base::DictionaryValue* GetContents() const override; | |
38 std::string GetSuperMac() const override; | |
39 void SetSuperMac(const std::string& super_mac) override; | |
40 | |
41 private: | |
42 // Helper constructor for |MakeCopy|. | |
43 explicit RegistryHashStoreContentsWin( | |
44 const RegistryHashStoreContentsWin& other); | |
45 | |
46 const base::string16 preference_key_name_; | |
47 }; | |
48 | |
49 #endif // COMPONENTS_USER_PREFS_TRACKED_PREF_REGISTRY_HASH_STORE_CONTENTS_H_ | |
OLD | NEW |