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

Side by Side Diff: components/prefs/default_pref_store.h

Issue 1907043002: Convert //components/prefs from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: IWYU fixes Created 4 years, 8 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_PREFS_DEFAULT_PREF_STORE_H_ 5 #ifndef COMPONENTS_PREFS_DEFAULT_PREF_STORE_H_
6 #define COMPONENTS_PREFS_DEFAULT_PREF_STORE_H_ 6 #define COMPONENTS_PREFS_DEFAULT_PREF_STORE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 12 matching lines...) Expand all
23 23
24 // PrefStore implementation: 24 // PrefStore implementation:
25 bool GetValue(const std::string& key, 25 bool GetValue(const std::string& key,
26 const base::Value** result) const override; 26 const base::Value** result) const override;
27 void AddObserver(PrefStore::Observer* observer) override; 27 void AddObserver(PrefStore::Observer* observer) override;
28 void RemoveObserver(PrefStore::Observer* observer) override; 28 void RemoveObserver(PrefStore::Observer* observer) override;
29 bool HasObservers() const override; 29 bool HasObservers() const override;
30 30
31 // Sets a |value| for |key|. Should only be called if a value has not been 31 // Sets a |value| for |key|. Should only be called if a value has not been
32 // set yet; otherwise call ReplaceDefaultValue(). 32 // set yet; otherwise call ReplaceDefaultValue().
33 void SetDefaultValue(const std::string& key, scoped_ptr<base::Value> value); 33 void SetDefaultValue(const std::string& key,
34 std::unique_ptr<base::Value> value);
34 35
35 // Replaces the the value for |key| with a new value. Should only be called 36 // Replaces the the value for |key| with a new value. Should only be called
36 // if a value has alreday been set; otherwise call SetDefaultValue(). 37 // if a value has alreday been set; otherwise call SetDefaultValue().
37 void ReplaceDefaultValue(const std::string& key, 38 void ReplaceDefaultValue(const std::string& key,
38 scoped_ptr<base::Value> value); 39 std::unique_ptr<base::Value> value);
39 40
40 const_iterator begin() const; 41 const_iterator begin() const;
41 const_iterator end() const; 42 const_iterator end() const;
42 43
43 private: 44 private:
44 ~DefaultPrefStore() override; 45 ~DefaultPrefStore() override;
45 46
46 PrefValueMap prefs_; 47 PrefValueMap prefs_;
47 48
48 base::ObserverList<PrefStore::Observer, true> observers_; 49 base::ObserverList<PrefStore::Observer, true> observers_;
49 50
50 DISALLOW_COPY_AND_ASSIGN(DefaultPrefStore); 51 DISALLOW_COPY_AND_ASSIGN(DefaultPrefStore);
51 }; 52 };
52 53
53 #endif // COMPONENTS_PREFS_DEFAULT_PREF_STORE_H_ 54 #endif // COMPONENTS_PREFS_DEFAULT_PREF_STORE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698