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

Unified Diff: components/cronet/android/cronet_in_memory_pref_store.h

Issue 1668463002: Delete base/prefs and update callers to use components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes Created 4 years, 11 months 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 side-by-side diff with in-line comments
Download patch
Index: components/cronet/android/cronet_in_memory_pref_store.h
diff --git a/components/cronet/android/cronet_in_memory_pref_store.h b/components/cronet/android/cronet_in_memory_pref_store.h
index 1aede142fc4761d95905172c7cc72abe8b80ed0b..42d9d27f2526dd4944ec4139caef7576570cc9de 100644
--- a/components/cronet/android/cronet_in_memory_pref_store.h
+++ b/components/cronet/android/cronet_in_memory_pref_store.h
@@ -13,8 +13,8 @@
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/observer_list.h"
-#include "base/prefs/persistent_pref_store.h"
-#include "base/prefs/pref_value_map.h"
+#include "components/prefs/persistent_pref_store.h"
+#include "components/prefs/pref_value_map.h"
namespace base {
class Value;
@@ -22,7 +22,7 @@ class Value;
// A light-weight prefstore implementation that keeps preferences
// in a memory backed store. This is not a persistent prefstore.
-// TODO(bengr): Move to base/prefs or some other shared location.
+// TODO(bengr): Move to components/prefs or some other shared location.
class CronetInMemoryPrefStore : public PersistentPrefStore {
public:
CronetInMemoryPrefStore();

Powered by Google App Engine
This is Rietveld 408576698