chromium/components/prefs/pref_filter.h

// Copyright 2013 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_FILTER_H_
#define COMPONENTS_PREFS_PREF_FILTER_H_

#include <string_view>
#include <utility>

#include "base/functional/callback_forward.h"
#include "base/values.h"
#include "components/prefs/prefs_export.h"

// Filters preferences as they are loaded from disk or updated at runtime.
// Currently supported only by JsonPrefStore.
class COMPONENTS_PREFS_EXPORT PrefFilter {};

#endif  // COMPONENTS_PREFS_PREF_FILTER_H_