| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/prefs/pref_registry_simple.h" | 5 #include "base/prefs/pref_registry_simple.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
| 9 #include "base/values.h" | 9 #include "base/values.h" |
| 10 | 10 |
| 11 PrefRegistrySimple::PrefRegistrySimple() { | 11 PrefRegistrySimple::PrefRegistrySimple() { |
| 12 } | 12 } |
| 13 | 13 |
| 14 PrefRegistrySimple::~PrefRegistrySimple() { | 14 PrefRegistrySimple::~PrefRegistrySimple() { |
| 15 } | 15 } |
| 16 | 16 |
| 17 void PrefRegistrySimple::RegisterBooleanPref(const std::string& path, | 17 void PrefRegistrySimple::RegisterBooleanPref(const std::string& path, |
| 18 bool default_value) { | 18 bool default_value) { |
| 19 RegisterPreference(path, new base::FundamentalValue(default_value)); | 19 RegisterPreference(path, |
| 20 new base::FundamentalValue(default_value), |
| 21 NO_REGISTRATION_FLAGS); |
| 20 } | 22 } |
| 21 | 23 |
| 22 void PrefRegistrySimple::RegisterIntegerPref(const std::string& path, | 24 void PrefRegistrySimple::RegisterIntegerPref(const std::string& path, |
| 23 int default_value) { | 25 int default_value) { |
| 24 RegisterPreference(path, new base::FundamentalValue(default_value)); | 26 RegisterPreference(path, |
| 27 new base::FundamentalValue(default_value), |
| 28 NO_REGISTRATION_FLAGS); |
| 25 } | 29 } |
| 26 | 30 |
| 27 void PrefRegistrySimple::RegisterDoublePref(const std::string& path, | 31 void PrefRegistrySimple::RegisterDoublePref(const std::string& path, |
| 28 double default_value) { | 32 double default_value) { |
| 29 RegisterPreference(path, new base::FundamentalValue(default_value)); | 33 RegisterPreference(path, |
| 34 new base::FundamentalValue(default_value), |
| 35 NO_REGISTRATION_FLAGS); |
| 30 } | 36 } |
| 31 | 37 |
| 32 void PrefRegistrySimple::RegisterStringPref(const std::string& path, | 38 void PrefRegistrySimple::RegisterStringPref(const std::string& path, |
| 33 const std::string& default_value) { | 39 const std::string& default_value) { |
| 34 RegisterPreference(path, new base::StringValue(default_value)); | 40 RegisterPreference(path, |
| 41 new base::StringValue(default_value), |
| 42 NO_REGISTRATION_FLAGS); |
| 35 } | 43 } |
| 36 | 44 |
| 37 void PrefRegistrySimple::RegisterFilePathPref( | 45 void PrefRegistrySimple::RegisterFilePathPref( |
| 38 const std::string& path, | 46 const std::string& path, |
| 39 const base::FilePath& default_value) { | 47 const base::FilePath& default_value) { |
| 40 RegisterPreference(path, new base::StringValue(default_value.value())); | 48 RegisterPreference(path, |
| 49 new base::StringValue(default_value.value()), |
| 50 NO_REGISTRATION_FLAGS); |
| 41 } | 51 } |
| 42 | 52 |
| 43 void PrefRegistrySimple::RegisterListPref(const std::string& path) { | 53 void PrefRegistrySimple::RegisterListPref(const std::string& path) { |
| 44 RegisterPreference(path, new base::ListValue()); | 54 RegisterPreference(path, new base::ListValue(), NO_REGISTRATION_FLAGS); |
| 45 } | 55 } |
| 46 | 56 |
| 47 void PrefRegistrySimple::RegisterListPref(const std::string& path, | 57 void PrefRegistrySimple::RegisterListPref(const std::string& path, |
| 48 base::ListValue* default_value) { | 58 base::ListValue* default_value) { |
| 49 RegisterPreference(path, default_value); | 59 RegisterPreference(path, default_value, NO_REGISTRATION_FLAGS); |
| 50 } | 60 } |
| 51 | 61 |
| 52 void PrefRegistrySimple::RegisterDictionaryPref(const std::string& path) { | 62 void PrefRegistrySimple::RegisterDictionaryPref(const std::string& path) { |
| 53 RegisterPreference(path, new base::DictionaryValue()); | 63 RegisterPreference(path, new base::DictionaryValue(), NO_REGISTRATION_FLAGS); |
| 54 } | 64 } |
| 55 | 65 |
| 56 void PrefRegistrySimple::RegisterDictionaryPref( | 66 void PrefRegistrySimple::RegisterDictionaryPref( |
| 57 const std::string& path, | 67 const std::string& path, |
| 58 base::DictionaryValue* default_value) { | 68 base::DictionaryValue* default_value) { |
| 59 RegisterPreference(path, default_value); | 69 RegisterPreference(path, default_value, NO_REGISTRATION_FLAGS); |
| 60 } | 70 } |
| 61 | 71 |
| 62 void PrefRegistrySimple::RegisterInt64Pref(const std::string& path, | 72 void PrefRegistrySimple::RegisterInt64Pref(const std::string& path, |
| 63 int64 default_value) { | 73 int64 default_value) { |
| 64 RegisterPreference( | 74 RegisterPreference( |
| 65 path, new base::StringValue(base::Int64ToString(default_value))); | 75 path, |
| 76 new base::StringValue(base::Int64ToString(default_value)), |
| 77 NO_REGISTRATION_FLAGS); |
| 66 } | 78 } |
| OLD | NEW |