chromium/components/user_prefs/user_prefs.cc

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

#include "components/user_prefs/user_prefs.h"

#include "base/check.h"
#include "base/memory/ptr_util.h"
#include "base/memory/singleton.h"
#include "components/prefs/pref_service.h"

namespace user_prefs {

namespace {

void* UserDataKey() {}

}  // namespace

// static
bool UserPrefs::IsInitialized(base::SupportsUserData* context) {}

// static
PrefService* UserPrefs::Get(base::SupportsUserData* context) {}

// static
void UserPrefs::Set(base::SupportsUserData* context, PrefService* prefs) {}

UserPrefs::UserPrefs(PrefService* prefs) :{}

UserPrefs::~UserPrefs() {}

}  // namespace user_prefs