blob: 8e2644cc719125741d98023d45e816278318c9ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/prefs/default_pref_store.h"
#include "base/logging.h"
using base::Value;
DefaultPrefStore::DefaultPrefStore() {}
bool DefaultPrefStore::GetValue(
const std::string& key,
const base::Value** result) const {
return prefs_.GetValue(key, result);
}
void DefaultPrefStore::SetDefaultValue(const std::string& key, Value* value) {
DCHECK(!GetValue(key, NULL));
prefs_.SetValue(key, value);
}
void DefaultPrefStore::RemoveDefaultValue(const std::string& key) {
DCHECK(GetValue(key, NULL));
prefs_.RemoveValue(key);
}
base::Value::Type DefaultPrefStore::GetType(const std::string& key) const {
const Value* value = NULL;
return GetValue(key, &value) ? value->GetType() : Value::TYPE_NULL;
}
DefaultPrefStore::const_iterator DefaultPrefStore::begin() const {
return prefs_.begin();
}
DefaultPrefStore::const_iterator DefaultPrefStore::end() const {
return prefs_.end();
}
DefaultPrefStore::~DefaultPrefStore() {}
|