OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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_USER_PREFS_TRACKED_PREF_REGISTRY_HASH_STORE_CONTENTS_WIN_H_ | 5 #ifndef SERVICES_PREFERENCES_TRACKED_REGISTRY_HASH_STORE_CONTENTS_WIN_H_ |
6 #define COMPONENTS_USER_PREFS_TRACKED_PREF_REGISTRY_HASH_STORE_CONTENTS_WIN_H_ | 6 #define SERVICES_PREFERENCES_TRACKED_REGISTRY_HASH_STORE_CONTENTS_WIN_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
10 #include "components/user_prefs/tracked/hash_store_contents.h" | 10 #include "services/preferences/tracked/hash_store_contents.h" |
11 | 11 |
12 // Implements HashStoreContents by storing MACs in the Windows registry. | 12 // Implements HashStoreContents by storing MACs in the Windows registry. |
13 class RegistryHashStoreContentsWin : public HashStoreContents { | 13 class RegistryHashStoreContentsWin : public HashStoreContents { |
14 public: | 14 public: |
15 // Constructs a RegistryHashStoreContents which acts on a registry entry | 15 // Constructs a RegistryHashStoreContents which acts on a registry entry |
16 // defined by |registry_path| and |store_key|. | 16 // defined by |registry_path| and |store_key|. |
17 explicit RegistryHashStoreContentsWin(const base::string16& registry_path, | 17 explicit RegistryHashStoreContentsWin(const base::string16& registry_path, |
18 const base::string16& store_key); | 18 const base::string16& store_key); |
19 | 19 |
20 // HashStoreContents overrides: | 20 // HashStoreContents overrides: |
(...skipping 18 matching lines...) Expand all Loading... |
39 void SetSuperMac(const std::string& super_mac) override; | 39 void SetSuperMac(const std::string& super_mac) override; |
40 | 40 |
41 private: | 41 private: |
42 // Helper constructor for |MakeCopy|. | 42 // Helper constructor for |MakeCopy|. |
43 explicit RegistryHashStoreContentsWin( | 43 explicit RegistryHashStoreContentsWin( |
44 const RegistryHashStoreContentsWin& other); | 44 const RegistryHashStoreContentsWin& other); |
45 | 45 |
46 const base::string16 preference_key_name_; | 46 const base::string16 preference_key_name_; |
47 }; | 47 }; |
48 | 48 |
49 #endif // COMPONENTS_USER_PREFS_TRACKED_PREF_REGISTRY_HASH_STORE_CONTENTS_H_ | 49 #endif // SERVICES_PREFERENCES_TRACKED_REGISTRY_HASH_STORE_CONTENTS_WIN_H_ |
OLD | NEW |