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

Side by Side Diff: services/preferences/tracked/registry_hash_store_contents_win.h

Issue 2893703002: Cleanup PreferenceMACs on browser_tests startup (Closed)
Patch Set: fix compile 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
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 SERVICES_PREFERENCES_TRACKED_REGISTRY_HASH_STORE_CONTENTS_WIN_H_ 5 #ifndef SERVICES_PREFERENCES_TRACKED_REGISTRY_HASH_STORE_CONTENTS_WIN_H_
6 #define SERVICES_PREFERENCES_TRACKED_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 "services/preferences/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|. If |store_key| begins with
17 // base::ScopedTempDir::GetTempDirPrefix(), this RegistryHashStoreContentsWin
18 // will self Reset() on destruction to avoid proliferating keys in tests that
19 // create a profile in a ScopedTempDir (https://crbug.com/721245).
17 explicit RegistryHashStoreContentsWin(const base::string16& registry_path, 20 explicit RegistryHashStoreContentsWin(const base::string16& registry_path,
18 const base::string16& store_key); 21 const base::string16& store_key);
19 22
23 ~RegistryHashStoreContentsWin() override;
24
20 // HashStoreContents overrides: 25 // HashStoreContents overrides:
21 bool IsCopyable() const override; 26 bool IsCopyable() const override;
22 std::unique_ptr<HashStoreContents> MakeCopy() const override; 27 std::unique_ptr<HashStoreContents> MakeCopy() const override;
23 base::StringPiece GetUMASuffix() const override; 28 base::StringPiece GetUMASuffix() const override;
24 void Reset() override; 29 void Reset() override;
25 bool GetMac(const std::string& path, std::string* out_value) override; 30 bool GetMac(const std::string& path, std::string* out_value) override;
26 bool GetSplitMacs(const std::string& path, 31 bool GetSplitMacs(const std::string& path,
27 std::map<std::string, std::string>* split_macs) override; 32 std::map<std::string, std::string>* split_macs) override;
28 void SetMac(const std::string& path, const std::string& value) override; 33 void SetMac(const std::string& path, const std::string& value) override;
29 void SetSplitMac(const std::string& path, 34 void SetSplitMac(const std::string& path,
30 const std::string& split_path, 35 const std::string& split_path,
31 const std::string& value) override; 36 const std::string& value) override;
32 bool RemoveEntry(const std::string& path) override; 37 bool RemoveEntry(const std::string& path) override;
33 38
34 // Unsupported HashStoreContents overrides: 39 // Unsupported HashStoreContents overrides:
35 void ImportEntry(const std::string& path, 40 void ImportEntry(const std::string& path,
36 const base::Value* in_value) override; 41 const base::Value* in_value) override;
37 const base::DictionaryValue* GetContents() const override; 42 const base::DictionaryValue* GetContents() const override;
38 std::string GetSuperMac() const override; 43 std::string GetSuperMac() const override;
39 void SetSuperMac(const std::string& super_mac) override; 44 void SetSuperMac(const std::string& super_mac) override;
40 45
41 private: 46 private:
42 // Helper constructor for |MakeCopy|. 47 // Helper constructor for |MakeCopy|.
43 explicit RegistryHashStoreContentsWin( 48 explicit RegistryHashStoreContentsWin(
44 const RegistryHashStoreContentsWin& other); 49 const RegistryHashStoreContentsWin& other);
45 50
46 const base::string16 preference_key_name_; 51 const base::string16 preference_key_name_;
52 const bool reset_on_delete_;
47 }; 53 };
48 54
49 #endif // SERVICES_PREFERENCES_TRACKED_REGISTRY_HASH_STORE_CONTENTS_WIN_H_ 55 #endif // SERVICES_PREFERENCES_TRACKED_REGISTRY_HASH_STORE_CONTENTS_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698