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

Unified Diff: base/prefs/pref_registry.h

Issue 12211105: Move remaining non-test, non-Chrome-specific Prefs code to base/prefs/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments, merge to LKGR. Created 7 years, 10 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
« no previous file with comments | « base/prefs/pref_notifier_impl.cc ('k') | base/prefs/pref_registry.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/prefs/pref_registry.h
diff --git a/chrome/browser/prefs/pref_registry.h b/base/prefs/pref_registry.h
similarity index 90%
rename from chrome/browser/prefs/pref_registry.h
rename to base/prefs/pref_registry.h
index 3a2e6ffbaed0055193cfb3b2494d30c01083dab9..800c62d8da75620f9caf8ee99d2bb5d565ab0af1 100644
--- a/chrome/browser/prefs/pref_registry.h
+++ b/base/prefs/pref_registry.h
@@ -2,11 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_PREFS_PREF_REGISTRY_H_
-#define CHROME_BROWSER_PREFS_PREF_REGISTRY_H_
+#ifndef BASE_PREFS_PREF_REGISTRY_H_
+#define BASE_PREFS_PREF_REGISTRY_H_
#include "base/callback.h"
#include "base/memory/ref_counted.h"
+#include "base/prefs/base_prefs_export.h"
#include "base/prefs/pref_value_map.h"
namespace base {
@@ -25,7 +26,7 @@ class PrefStore;
//
// Currently, registrations after constructing the PrefService will
// also work, but this is being deprecated.
-class PrefRegistry : public base::RefCounted<PrefRegistry> {
+class BASE_PREFS_EXPORT PrefRegistry : public base::RefCounted<PrefRegistry> {
public:
typedef PrefValueMap::const_iterator const_iterator;
typedef base::Callback<void(const char*, base::Value*)> RegistrationCallback;
@@ -70,4 +71,4 @@ class PrefRegistry : public base::RefCounted<PrefRegistry> {
DISALLOW_COPY_AND_ASSIGN(PrefRegistry);
};
-#endif // CHROME_BROWSER_PREFS_PREF_REGISTRY_H_
+#endif // BASE_PREFS_PREF_REGISTRY_H_
« no previous file with comments | « base/prefs/pref_notifier_impl.cc ('k') | base/prefs/pref_registry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698