chromium/components/prefs/pref_registry_simple.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/pref_registry_simple.h"

#include <string_view>
#include <utility>

#include "base/files/file_path.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/values.h"

PrefRegistrySimple::PrefRegistrySimple() = default;
PrefRegistrySimple::~PrefRegistrySimple() = default;

void PrefRegistrySimple::RegisterBooleanPref(std::string_view path,
                                             bool default_value,
                                             uint32_t flags) {}

void PrefRegistrySimple::RegisterIntegerPref(std::string_view path,
                                             int default_value,
                                             uint32_t flags) {}

void PrefRegistrySimple::RegisterDoublePref(std::string_view path,
                                            double default_value,
                                            uint32_t flags) {}

void PrefRegistrySimple::RegisterStringPref(std::string_view path,
                                            std::string_view default_value,
                                            uint32_t flags) {}

void PrefRegistrySimple::RegisterFilePathPref(
    std::string_view path,
    const base::FilePath& default_value,
    uint32_t flags) {}

void PrefRegistrySimple::RegisterListPref(std::string_view path,
                                          uint32_t flags) {}

void PrefRegistrySimple::RegisterListPref(std::string_view path,
                                          base::Value::List default_value,
                                          uint32_t flags) {}

void PrefRegistrySimple::RegisterDictionaryPref(std::string_view path,
                                                uint32_t flags) {}

void PrefRegistrySimple::RegisterDictionaryPref(std::string_view path,
                                                base::Value::Dict default_value,
                                                uint32_t flags) {}

void PrefRegistrySimple::RegisterInt64Pref(std::string_view path,
                                           int64_t default_value,
                                           uint32_t flags) {}

void PrefRegistrySimple::RegisterUint64Pref(std::string_view path,
                                            uint64_t default_value,
                                            uint32_t flags) {}

void PrefRegistrySimple::RegisterTimePref(std::string_view path,
                                          base::Time default_value,
                                          uint32_t flags) {}

void PrefRegistrySimple::RegisterTimeDeltaPref(std::string_view path,
                                               base::TimeDelta default_value,
                                               uint32_t flags) {}