// Copyright 2011 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_VALUE_MAP_H_ #define COMPONENTS_PREFS_PREF_VALUE_MAP_H_ #include <map> #include <string> #include <string_view> #include <vector> #include "base/values.h" #include "components/prefs/prefs_export.h" // A generic string to value map used by the PrefStore implementations. class COMPONENTS_PREFS_EXPORT PrefValueMap { … }; #endif // COMPONENTS_PREFS_PREF_VALUE_MAP_H_