chromium/chrome/browser/devtools/devtools_settings.cc

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/devtools/devtools_settings.h"

#include "chrome/browser/profiles/profile.h"
#include "chrome/common/pref_names.h"
#include "components/prefs/scoped_user_pref_update.h"

const char DevToolsSettings::kSyncDevToolsPreferencesFrontendName[] =;
const bool DevToolsSettings::kSyncDevToolsPreferencesDefault =;

DevToolsSettings::DevToolsSettings(Profile* profile) :{}

DevToolsSettings::~DevToolsSettings() = default;

void DevToolsSettings::Register(const std::string& name,
                                const RegisterOptions& options) {}

base::Value::Dict DevToolsSettings::Get() {}

std::optional<base::Value> DevToolsSettings::Get(const std::string& name) {}

void DevToolsSettings::Set(const std::string& name, const std::string& value) {}

void DevToolsSettings::Remove(const std::string& name) {}

void DevToolsSettings::Clear() {}

const char* DevToolsSettings::GetDictionaryNameForSettingsName(
    const std::string& name) const {}

const char* DevToolsSettings::GetDictionaryNameForSyncedPrefs() const {}

void DevToolsSettings::DevToolsSyncPreferencesChanged() {}