OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 THIRD_PARTY_LIBADDRESSINPUT_CHROMIUM_CHROME_STORAGE_IMPL_H_ | 5 #ifndef THIRD_PARTY_LIBADDRESSINPUT_CHROMIUM_CHROME_STORAGE_IMPL_H_ |
6 #define THIRD_PARTY_LIBADDRESSINPUT_CHROMIUM_CHROME_STORAGE_IMPL_H_ | 6 #define THIRD_PARTY_LIBADDRESSINPUT_CHROMIUM_CHROME_STORAGE_IMPL_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/memory/scoped_vector.h" | 11 #include "base/memory/scoped_vector.h" |
12 #include "base/prefs/pref_store.h" | 12 #include "base/prefs/pref_store.h" |
13 #include "base/scoped_observer.h" | 13 #include "base/scoped_observer.h" |
14 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/stora
ge.h" | 14 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/stora
ge.h" |
15 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/
scoped_ptr.h" | 15 #include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/
scoped_ptr.h" |
16 | 16 |
17 class WriteablePrefStore; | 17 class WriteablePrefStore; |
18 | 18 |
| 19 namespace autofill { |
| 20 |
19 // An implementation of the Storage interface which passes through to an | 21 // An implementation of the Storage interface which passes through to an |
20 // underlying WriteablePrefStore. | 22 // underlying WriteablePrefStore. |
21 class ChromeStorageImpl : public i18n::addressinput::Storage, | 23 class ChromeStorageImpl : public ::i18n::addressinput::Storage, |
22 public PrefStore::Observer { | 24 public PrefStore::Observer { |
23 public: | 25 public: |
24 // |store| must outlive |this|. | 26 // |store| must outlive |this|. |
25 explicit ChromeStorageImpl(WriteablePrefStore* store); | 27 explicit ChromeStorageImpl(WriteablePrefStore* store); |
26 virtual ~ChromeStorageImpl(); | 28 virtual ~ChromeStorageImpl(); |
27 | 29 |
28 // i18n::addressinput::Storage implementation. | 30 // ::i18n::addressinput::Storage implementation. |
29 virtual void Put(const std::string& key, const std::string& data) OVERRIDE; | 31 virtual void Put(const std::string& key, const std::string& data) OVERRIDE; |
30 virtual void Get(const std::string& key, scoped_ptr<Callback> data_ready) | 32 virtual void Get(const std::string& key, scoped_ptr<Callback> data_ready) |
31 const OVERRIDE; | 33 OVERRIDE; |
32 | 34 |
33 // PrefStore::Observer implementation. | 35 // PrefStore::Observer implementation. |
34 virtual void OnPrefValueChanged(const std::string& key) OVERRIDE; | 36 virtual void OnPrefValueChanged(const std::string& key) OVERRIDE; |
35 virtual void OnInitializationCompleted(bool succeeded) OVERRIDE; | 37 virtual void OnInitializationCompleted(bool succeeded) OVERRIDE; |
36 | 38 |
37 private: | 39 private: |
38 struct Request { | 40 struct Request { |
39 Request(const std::string& key, scoped_ptr<Callback> callback); | 41 Request(const std::string& key, scoped_ptr<Callback> callback); |
40 | 42 |
41 std::string key; | 43 std::string key; |
42 scoped_ptr<Callback> callback; | 44 scoped_ptr<Callback> callback; |
43 }; | 45 }; |
44 | 46 |
45 // Non-const version of Get(). | |
46 void DoGet(const std::string& key, scoped_ptr<Callback> data_ready); | |
47 | |
48 WriteablePrefStore* backing_store_; // weak | 47 WriteablePrefStore* backing_store_; // weak |
49 | 48 |
50 // Get requests that haven't yet been serviced. | 49 // Get requests that haven't yet been serviced. |
51 ScopedVector<Request> outstanding_requests_; | 50 ScopedVector<Request> outstanding_requests_; |
52 | 51 |
53 ScopedObserver<PrefStore, ChromeStorageImpl> scoped_observer_; | 52 ScopedObserver<PrefStore, ChromeStorageImpl> scoped_observer_; |
54 | 53 |
55 DISALLOW_COPY_AND_ASSIGN(ChromeStorageImpl); | 54 DISALLOW_COPY_AND_ASSIGN(ChromeStorageImpl); |
56 }; | 55 }; |
57 | 56 |
| 57 } // namespace autofill |
| 58 |
58 #endif // THIRD_PARTY_LIBADDRESSINPUT_CHROMIUM_CHROME_STORAGE_IMPL_H_ | 59 #endif // THIRD_PARTY_LIBADDRESSINPUT_CHROMIUM_CHROME_STORAGE_IMPL_H_ |
OLD | NEW |