| Index: components/prefs/pref_store.h
|
| diff --git a/components/prefs/pref_store.h b/components/prefs/pref_store.h
|
| index ef2bc494d150b8d2366a72f1dfd36f282e553687..6f0c16b65429d9870c316c05185ed48b4e38fab4 100644
|
| --- a/components/prefs/pref_store.h
|
| +++ b/components/prefs/pref_store.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef COMPONENTS_PREFS_PREF_STORE_H_
|
| -#define COMPONENTS_PREFS_PREF_STORE_H_
|
| +#ifndef BASE_PREFS_PREF_STORE_H_
|
| +#define BASE_PREFS_PREF_STORE_H_
|
|
|
| #include <string>
|
|
|
| @@ -22,10 +22,10 @@
|
| // CommandLinePrefStore, which bridges command line options to preferences and
|
| // ConfigurationPolicyPrefStore, which is used for hooking up configuration
|
| // policy with the preference subsystem.
|
| -class COMPONENTS_PREFS_EXPORT PrefStore : public base::RefCounted<PrefStore> {
|
| +class BASE_PREFS_EXPORT PrefStore : public base::RefCounted<PrefStore> {
|
| public:
|
| // Observer interface for monitoring PrefStore.
|
| - class COMPONENTS_PREFS_EXPORT Observer {
|
| + class BASE_PREFS_EXPORT Observer {
|
| public:
|
| // Called when the value for the given |key| in the store changes.
|
| virtual void OnPrefValueChanged(const std::string& key) = 0;
|
| @@ -60,4 +60,4 @@
|
| DISALLOW_COPY_AND_ASSIGN(PrefStore);
|
| };
|
|
|
| -#endif // COMPONENTS_PREFS_PREF_STORE_H_
|
| +#endif // BASE_PREFS_PREF_STORE_H_
|
|
|