Chromium Code Reviews| Index: base/prefs/pref_notifier_impl.h |
| diff --git a/chrome/browser/prefs/pref_notifier_impl.h b/base/prefs/pref_notifier_impl.h |
| similarity index 87% |
| rename from chrome/browser/prefs/pref_notifier_impl.h |
| rename to base/prefs/pref_notifier_impl.h |
| index 7ec092d5481bd8fb092a5ffd08c3930229e88147..f194512824dee77aa0db173df2a9f3273aa30bba 100644 |
| --- a/chrome/browser/prefs/pref_notifier_impl.h |
| +++ b/base/prefs/pref_notifier_impl.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 CHROME_BROWSER_PREFS_PREF_NOTIFIER_IMPL_H_ |
| -#define CHROME_BROWSER_PREFS_PREF_NOTIFIER_IMPL_H_ |
| +#ifndef BASE_PREFS_PREF_NOTIFIER_IMPL_H_ |
| +#define BASE_PREFS_PREF_NOTIFIER_IMPL_H_ |
| #include <list> |
| #include <string> |
| @@ -11,6 +11,7 @@ |
| #include "base/callback.h" |
| #include "base/hash_tables.h" |
| #include "base/observer_list.h" |
| +#include "base/prefs/base_prefs_export.h" |
|
Mattias Nissler (ping if slow)
2013/02/11 11:42:56
That file seems to be missing?
|
| #include "base/prefs/pref_notifier.h" |
| #include "base/prefs/pref_observer.h" |
| #include "base/threading/non_thread_safe.h" |
| @@ -18,8 +19,8 @@ |
| class PrefService; |
| // The PrefNotifier implementation used by the PrefService. |
| -class PrefNotifierImpl : public PrefNotifier, |
| - public base::NonThreadSafe { |
| +class BASE_PREFS_EXPORT PrefNotifierImpl : public PrefNotifier, |
| + public base::NonThreadSafe { |
| public: |
| PrefNotifierImpl(); |
| explicit PrefNotifierImpl(PrefService* pref_service); |
| @@ -66,4 +67,4 @@ class PrefNotifierImpl : public PrefNotifier, |
| DISALLOW_COPY_AND_ASSIGN(PrefNotifierImpl); |
| }; |
| -#endif // CHROME_BROWSER_PREFS_PREF_NOTIFIER_IMPL_H_ |
| +#endif // BASE_PREFS_PREF_NOTIFIER_IMPL_H_ |