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

Side by Side Diff: chrome/browser/prefs/pref_value_map.h

Issue 5646003: Sanitize PrefStore interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix PrefService mock construction in PrefServiceTest to include command line store. Created 10 years 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/prefs/pref_service_unittest.cc ('k') | chrome/browser/prefs/pref_value_map.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 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 CHROME_BROWSER_PREFS_PREF_VALUE_MAP_H_
6 #define CHROME_BROWSER_PREFS_PREF_VALUE_MAP_H_
7 #pragma once
8
9 #include <map>
10 #include <string>
11
12 #include "base/basictypes.h"
13
14 class Value;
15
16 // A generic string to value map used by the PrefStore implementations.
17 class PrefValueMap {
18 public:
19 PrefValueMap() {}
20 virtual ~PrefValueMap();
21
22 // Gets the value for |key| and stores it in |value|. Ownership remains with
23 // the map. Returns true if a value is present. If not, |value| is not
24 // touched.
25 bool GetValue(const std::string& key, Value** value) const;
26
27 // Sets a new |value| for |key|. Takes ownership of |value|, which must be
28 // non-NULL. Returns true if the value changed.
29 bool SetValue(const std::string& key, Value* value);
30
31 // Removes the value for |key| from the map. Returns true if a value was
32 // removed.
33 bool RemoveValue(const std::string& key);
34
35 // Clears the map.
36 void Clear();
37
38 private:
39 typedef std::map<std::string, Value*> Map;
40
41 Map prefs_;
42
43 DISALLOW_COPY_AND_ASSIGN(PrefValueMap);
44 };
45
46 #endif // CHROME_BROWSER_PREFS_PREF_VALUE_MAP_H_
OLDNEW
« no previous file with comments | « chrome/browser/prefs/pref_service_unittest.cc ('k') | chrome/browser/prefs/pref_value_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698