chromium/components/prefs/default_pref_store.cc

// 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.

#include "components/prefs/default_pref_store.h"

#include <string_view>
#include <utility>

#include "base/check.h"
#include "base/observer_list.h"

Value;

DefaultPrefStore::DefaultPrefStore() = default;

bool DefaultPrefStore::GetValue(std::string_view key,
                                const Value** result) const {}

base::Value::Dict DefaultPrefStore::GetValues() const {}

void DefaultPrefStore::AddObserver(PrefStore::Observer* observer) {}

void DefaultPrefStore::RemoveObserver(PrefStore::Observer* observer) {}

bool DefaultPrefStore::HasObservers() const {}

void DefaultPrefStore::SetDefaultValue(std::string_view key, Value value) {}

void DefaultPrefStore::ReplaceDefaultValue(std::string_view key, Value value) {}

DefaultPrefStore::const_iterator DefaultPrefStore::begin() const {}

DefaultPrefStore::const_iterator DefaultPrefStore::end() const {}

DefaultPrefStore::~DefaultPrefStore() = default;