| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/service/service_process_prefs.h" | 5 #include "chrome/service/service_process_prefs.h" |
| 6 | 6 |
| 7 #include "base/values.h" | 7 #include "base/values.h" |
| 8 | 8 |
| 9 ServiceProcessPrefs::ServiceProcessPrefs( | 9 ServiceProcessPrefs::ServiceProcessPrefs( |
| 10 const FilePath& pref_filename, | 10 const FilePath& pref_filename, |
| 11 base::MessageLoopProxy* file_message_loop_proxy) | 11 base::MessageLoopProxy* file_message_loop_proxy) |
| 12 : prefs_(new JsonPrefStore(pref_filename, file_message_loop_proxy)) { | 12 : prefs_(new JsonPrefStore(pref_filename, file_message_loop_proxy)) { |
| 13 } | 13 } |
| 14 | 14 |
| 15 ServiceProcessPrefs::~ServiceProcessPrefs() {} | 15 ServiceProcessPrefs::~ServiceProcessPrefs() {} |
| 16 | 16 |
| 17 void ServiceProcessPrefs::ReadPrefs() { | 17 void ServiceProcessPrefs::ReadPrefs() { |
| 18 prefs_->ReadPrefs(); | 18 prefs_->ReadPrefs(); |
| 19 } | 19 } |
| 20 | 20 |
| 21 void ServiceProcessPrefs::WritePrefs() { | 21 void ServiceProcessPrefs::WritePrefs() { |
| 22 prefs_->CommitPendingWrite(); | 22 prefs_->CommitPendingWrite(); |
| 23 } | 23 } |
| 24 | 24 |
| 25 void ServiceProcessPrefs::GetString(const std::string& key, | 25 void ServiceProcessPrefs::GetString(const std::string& key, |
| 26 std::string* result) { | 26 std::string* result) const { |
| 27 const Value* value; | 27 const Value* value; |
| 28 if (prefs_->GetValue(key, &value) == PersistentPrefStore::READ_OK) | 28 if (prefs_->GetValue(key, &value) == PersistentPrefStore::READ_OK) |
| 29 value->GetAsString(result); | 29 value->GetAsString(result); |
| 30 } | 30 } |
| 31 | 31 |
| 32 void ServiceProcessPrefs::SetString(const std::string& key, | 32 void ServiceProcessPrefs::SetString(const std::string& key, |
| 33 const std::string& value) { | 33 const std::string& value) { |
| 34 prefs_->SetValue(key, Value::CreateStringValue(value)); | 34 prefs_->SetValue(key, Value::CreateStringValue(value)); |
| 35 } | 35 } |
| 36 | 36 |
| 37 void ServiceProcessPrefs::GetBoolean(const std::string& key, bool* result) { | 37 void ServiceProcessPrefs::GetBoolean(const std::string& key, |
| 38 bool* result) const { |
| 38 const Value* value; | 39 const Value* value; |
| 39 if (prefs_->GetValue(key, &value) == PersistentPrefStore::READ_OK) | 40 if (prefs_->GetValue(key, &value) == PersistentPrefStore::READ_OK) |
| 40 value->GetAsBoolean(result); | 41 value->GetAsBoolean(result); |
| 41 } | 42 } |
| 42 | 43 |
| 43 void ServiceProcessPrefs::SetBoolean(const std::string& key, bool value) { | 44 void ServiceProcessPrefs::SetBoolean(const std::string& key, bool value) { |
| 44 prefs_->SetValue(key, Value::CreateBooleanValue(value)); | 45 prefs_->SetValue(key, Value::CreateBooleanValue(value)); |
| 45 } | 46 } |
| 46 | 47 |
| 47 void ServiceProcessPrefs::GetDictionary(const std::string& key, | 48 void ServiceProcessPrefs::GetDictionary(const std::string& key, |
| 48 const DictionaryValue** result) { | 49 const DictionaryValue** result) const { |
| 49 const Value* value; | 50 const Value* value; |
| 50 if (prefs_->GetValue(key, &value) != PersistentPrefStore::READ_OK || | 51 if (prefs_->GetValue(key, &value) != PersistentPrefStore::READ_OK || |
| 51 !value->IsType(Value::TYPE_DICTIONARY)) { | 52 !value->IsType(Value::TYPE_DICTIONARY)) { |
| 52 return; | 53 return; |
| 53 } | 54 } |
| 54 | 55 |
| 55 *result = static_cast<const DictionaryValue*>(value); | 56 *result = static_cast<const DictionaryValue*>(value); |
| 56 } | 57 } |
| 57 | 58 |
| 58 void ServiceProcessPrefs::RemovePref(const std::string& key) { | 59 void ServiceProcessPrefs::RemovePref(const std::string& key) { |
| 59 prefs_->RemoveValue(key); | 60 prefs_->RemoveValue(key); |
| 60 } | 61 } |
| OLD | NEW |