// 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_PREF_REGISTRY_SIMPLE_H_ #define COMPONENTS_PREFS_PREF_REGISTRY_SIMPLE_H_ #include <stdint.h> #include <memory> #include <string_view> #include "base/time/time.h" #include "base/values.h" #include "components/prefs/pref_registry.h" #include "components/prefs/prefs_export.h" namespace base { class FilePath; } // A simple implementation of PrefRegistry. class COMPONENTS_PREFS_EXPORT PrefRegistrySimple : public PrefRegistry { … }; #endif // COMPONENTS_PREFS_PREF_REGISTRY_SIMPLE_H_