// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_PREFS_PERSISTENT_PREF_STORE_H_ #define COMPONENTS_PREFS_PERSISTENT_PREF_STORE_H_ #include "base/functional/callback.h" #include "components/prefs/prefs_export.h" #include "components/prefs/writeable_pref_store.h" // 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 COMPONENTS_PREFS_EXPORT PersistentPrefStore : public WriteablePrefStore { … }; #endif // COMPONENTS_PREFS_PERSISTENT_PREF_STORE_H_