diff options
Diffstat (limited to 'components/prefs/persistent_pref_store.h')
-rw-r--r-- | components/prefs/persistent_pref_store.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/prefs/persistent_pref_store.h b/components/prefs/persistent_pref_store.h index 51d9656..1356f8e5 100644 --- a/components/prefs/persistent_pref_store.h +++ b/components/prefs/persistent_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 BASE_PREFS_PERSISTENT_PREF_STORE_H_ -#define BASE_PREFS_PERSISTENT_PREF_STORE_H_ +#ifndef COMPONENTS_PREFS_PERSISTENT_PREF_STORE_H_ +#define COMPONENTS_PREFS_PERSISTENT_PREF_STORE_H_ #include <string> @@ -13,7 +13,7 @@ // This interface is complementary to the PrefStore interface, declaring // additional functionality that adds support for setting values and persisting // the data to some backing store. -class BASE_PREFS_EXPORT PersistentPrefStore : public WriteablePrefStore { +class COMPONENTS_PREFS_EXPORT PersistentPrefStore : public WriteablePrefStore { public: // Unique integer code for each type of error so we can report them // distinctly in a histogram. @@ -74,4 +74,4 @@ class BASE_PREFS_EXPORT PersistentPrefStore : public WriteablePrefStore { ~PersistentPrefStore() override {} }; -#endif // BASE_PREFS_PERSISTENT_PREF_STORE_H_ +#endif // COMPONENTS_PREFS_PERSISTENT_PREF_STORE_H_ |