Update V8 to version 4.7.19.
[chromium-blink-merge.git] / android_webview / browser / aw_pref_store.h
blobfd85639f7dd9deb8b063f830d83caf56bd63228e
1 // Copyright (c) 2013 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.
5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_PREF_STORE_H_
6 #define ANDROID_WEBVIEW_BROWSER_AW_PREF_STORE_H_
8 #include <string>
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
12 #include "base/observer_list.h"
13 #include "base/prefs/persistent_pref_store.h"
14 #include "base/prefs/pref_value_map.h"
16 // A light-weight prefstore implementation that keeps preferences
17 // in a memory backed store. This is not a persistent prefstore -- we
18 // subclass the PersistentPrefStore here since it is needed by the
19 // PrefService, which in turn is needed by the Autofill component.
20 class AwPrefStore : public PersistentPrefStore {
21 public:
22 AwPrefStore();
24 // Overriden from PrefStore.
25 bool GetValue(const std::string& key,
26 const base::Value** result) const override;
27 void AddObserver(PrefStore::Observer* observer) override;
28 void RemoveObserver(PrefStore::Observer* observer) override;
29 bool HasObservers() const override;
30 bool IsInitializationComplete() const override;
32 // PersistentPrefStore overrides:
33 bool GetMutableValue(const std::string& key, base::Value** result) override;
34 void ReportValueChanged(const std::string& key, uint32 flags) override;
35 void SetValue(const std::string& key,
36 scoped_ptr<base::Value> value,
37 uint32 flags) override;
38 void SetValueSilently(const std::string& key,
39 scoped_ptr<base::Value> value,
40 uint32 flags) override;
41 void RemoveValue(const std::string& key, uint32 flags) override;
42 bool ReadOnly() const override;
43 PrefReadError GetReadError() const override;
44 PersistentPrefStore::PrefReadError ReadPrefs() override;
45 void ReadPrefsAsync(ReadErrorDelegate* error_delegate) override;
46 void CommitPendingWrite() override {}
47 void SchedulePendingLossyWrites() override {}
49 protected:
50 ~AwPrefStore() override;
52 private:
53 // Stores the preference values.
54 PrefValueMap prefs_;
56 base::ObserverList<PrefStore::Observer, true> observers_;
58 DISALLOW_COPY_AND_ASSIGN(AwPrefStore);
61 #endif // ANDROID_WEBVIEW_BROWSER_AW_PREF_STORE_H_