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

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

Issue 8614003: Add OVERRIDE to chrome/browser/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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_value_store.h ('k') | chrome/browser/prefs/value_map_pref_store.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CHROME_BROWSER_PREFS_TESTING_PREF_STORE_H_ 5 #ifndef CHROME_BROWSER_PREFS_TESTING_PREF_STORE_H_
6 #define CHROME_BROWSER_PREFS_TESTING_PREF_STORE_H_ 6 #define CHROME_BROWSER_PREFS_TESTING_PREF_STORE_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "base/observer_list.h" 11 #include "base/observer_list.h"
12 #include "chrome/browser/prefs/pref_value_map.h" 12 #include "chrome/browser/prefs/pref_value_map.h"
13 #include "chrome/common/persistent_pref_store.h" 13 #include "chrome/common/persistent_pref_store.h"
14 14
15 // |TestingPrefStore| is a preference store implementation that allows tests to 15 // |TestingPrefStore| is a preference store implementation that allows tests to
16 // explicitly manipulate the contents of the store, triggering notifications 16 // explicitly manipulate the contents of the store, triggering notifications
17 // where appropriate. 17 // where appropriate.
18 class TestingPrefStore : public PersistentPrefStore { 18 class TestingPrefStore : public PersistentPrefStore {
19 public: 19 public:
20 TestingPrefStore(); 20 TestingPrefStore();
21 virtual ~TestingPrefStore(); 21 virtual ~TestingPrefStore();
22 22
23 // Overriden from PrefStore. 23 // Overriden from PrefStore.
24 virtual ReadResult GetValue(const std::string& key, 24 virtual ReadResult GetValue(const std::string& key,
25 const base::Value** result) const; 25 const base::Value** result) const OVERRIDE;
26 virtual void AddObserver(PrefStore::Observer* observer); 26 virtual void AddObserver(PrefStore::Observer* observer) OVERRIDE;
27 virtual void RemoveObserver(PrefStore::Observer* observer); 27 virtual void RemoveObserver(PrefStore::Observer* observer) OVERRIDE;
28 virtual bool IsInitializationComplete() const; 28 virtual bool IsInitializationComplete() const OVERRIDE;
29 29
30 // PersistentPrefStore overrides: 30 // PersistentPrefStore overrides:
31 virtual ReadResult GetMutableValue(const std::string& key, 31 virtual ReadResult GetMutableValue(const std::string& key,
32 base::Value** result); 32 base::Value** result) OVERRIDE;
33 virtual void ReportValueChanged(const std::string& key); 33 virtual void ReportValueChanged(const std::string& key) OVERRIDE;
34 virtual void SetValue(const std::string& key, base::Value* value); 34 virtual void SetValue(const std::string& key, base::Value* value) OVERRIDE;
35 virtual void SetValueSilently(const std::string& key, base::Value* value); 35 virtual void SetValueSilently(const std::string& key,
36 virtual void RemoveValue(const std::string& key); 36 base::Value* value) OVERRIDE;
37 virtual bool ReadOnly() const; 37 virtual void RemoveValue(const std::string& key) OVERRIDE;
38 virtual PersistentPrefStore::PrefReadError ReadPrefs(); 38 virtual bool ReadOnly() const OVERRIDE;
39 virtual void ReadPrefsAsync(ReadErrorDelegate* error_delegate); 39 virtual PersistentPrefStore::PrefReadError ReadPrefs() OVERRIDE;
40 virtual bool WritePrefs(); 40 virtual void ReadPrefsAsync(ReadErrorDelegate* error_delegate) OVERRIDE;
41 virtual void ScheduleWritePrefs() {} 41 virtual bool WritePrefs() OVERRIDE;
42 virtual void CommitPendingWrite() {} 42 virtual void ScheduleWritePrefs() OVERRIDE {}
43 virtual void CommitPendingWrite() OVERRIDE {}
43 44
44 // Marks the store as having completed initialization. 45 // Marks the store as having completed initialization.
45 void SetInitializationCompleted(); 46 void SetInitializationCompleted();
46 47
47 // Used for tests to trigger notifications explicitly. 48 // Used for tests to trigger notifications explicitly.
48 void NotifyPrefValueChanged(const std::string& key); 49 void NotifyPrefValueChanged(const std::string& key);
49 void NotifyInitializationCompleted(); 50 void NotifyInitializationCompleted();
50 51
51 // Some convenience getters/setters. 52 // Some convenience getters/setters.
52 void SetString(const std::string& key, const std::string& value); 53 void SetString(const std::string& key, const std::string& value);
(...skipping 22 matching lines...) Expand all
75 76
76 // Whether initialization has been completed. 77 // Whether initialization has been completed.
77 bool init_complete_; 78 bool init_complete_;
78 79
79 ObserverList<PrefStore::Observer, true> observers_; 80 ObserverList<PrefStore::Observer, true> observers_;
80 81
81 DISALLOW_COPY_AND_ASSIGN(TestingPrefStore); 82 DISALLOW_COPY_AND_ASSIGN(TestingPrefStore);
82 }; 83 };
83 84
84 #endif // CHROME_BROWSER_PREFS_TESTING_PREF_STORE_H_ 85 #endif // CHROME_BROWSER_PREFS_TESTING_PREF_STORE_H_
OLDNEW
« no previous file with comments | « chrome/browser/prefs/pref_value_store.h ('k') | chrome/browser/prefs/value_map_pref_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698