Index: components/cronet/android/cronet_pref_store.h |
diff --git a/android_webview/browser/aw_pref_store.h b/components/cronet/android/cronet_pref_store.h |
similarity index 68% |
copy from android_webview/browser/aw_pref_store.h |
copy to components/cronet/android/cronet_pref_store.h |
index 6935c7190a864dd91a18c0d5d99fb386915a552f..b666c6131192227784cb24256038737b45c8288e 100644 |
--- a/android_webview/browser/aw_pref_store.h |
+++ b/components/cronet/android/cronet_pref_store.h |
@@ -1,9 +1,9 @@ |
-// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef ANDROID_WEBVIEW_BROWSER_AW_PREF_STORE_H_ |
-#define ANDROID_WEBVIEW_BROWSER_AW_PREF_STORE_H_ |
+#ifndef COMPONENTS_CRONET_ANDROID_CRONET_PREF_STORE_H_ |
+#define COMPONENTS_CRONET_ANDROID_CRONET_PREF_STORE_H_ |
#include <string> |
@@ -17,11 +17,12 @@ |
// in a memory backed store. This is not a persistent prefstore -- we |
// subclass the PersistentPrefStore here since it is needed by the |
// PrefService, which in turn is needed by the Autofill component. |
xunjieli
2015/03/20 18:39:49
I am not sure "Autofill" component is applicable i
bengr
2015/04/24 02:30:42
Done.
|
-class AwPrefStore : public PersistentPrefStore { |
+// TODO(bengr): Move to base/prefs or some other shared location. |
+class CronetPrefStore : public PersistentPrefStore { |
xunjieli
2015/03/20 18:39:49
I am working on persisting HttpServerProperties on
bengr
2015/04/24 02:30:42
The pref store for the data reduction proxy holds
|
public: |
- AwPrefStore(); |
+ CronetPrefStore(); |
- // Overriden from PrefStore. |
+ // Overrides from PrefStore: |
bool GetValue(const std::string& key, |
const base::Value** result) const override; |
void AddObserver(PrefStore::Observer* observer) override; |
@@ -30,10 +31,12 @@ class AwPrefStore : public PersistentPrefStore { |
bool IsInitializationComplete() const override; |
// PersistentPrefStore overrides: |
- bool GetMutableValue(const std::string& key, base::Value** result) override; |
+ bool GetMutableValue(const std::string& key, |
+ base::Value** result) override; |
void ReportValueChanged(const std::string& key) override; |
void SetValue(const std::string& key, base::Value* value) override; |
- void SetValueSilently(const std::string& key, base::Value* value) override; |
+ void SetValueSilently(const std::string& key, |
+ base::Value* value) override; |
void RemoveValue(const std::string& key) override; |
bool ReadOnly() const override; |
PrefReadError GetReadError() const override; |
@@ -42,7 +45,7 @@ class AwPrefStore : public PersistentPrefStore { |
void CommitPendingWrite() override {} |
protected: |
- ~AwPrefStore() override; |
+ ~CronetPrefStore() override; |
private: |
// Stores the preference values. |
@@ -50,7 +53,7 @@ class AwPrefStore : public PersistentPrefStore { |
ObserverList<PrefStore::Observer, true> observers_; |
- DISALLOW_COPY_AND_ASSIGN(AwPrefStore); |
+ DISALLOW_COPY_AND_ASSIGN(CronetPrefStore); |
}; |
-#endif // ANDROID_WEBVIEW_BROWSER_AW_PREF_STORE_H_ |
+#endif // COMPONENTS_CRONET_ANDROID_CRONET_PREF_STORE_H_ |