| 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_->WritePrefs(); | 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) { |
| 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, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 51 !value->IsType(Value::TYPE_DICTIONARY)) { | 51 !value->IsType(Value::TYPE_DICTIONARY)) { |
| 52 return; | 52 return; |
| 53 } | 53 } |
| 54 | 54 |
| 55 *result = static_cast<const DictionaryValue*>(value); | 55 *result = static_cast<const DictionaryValue*>(value); |
| 56 } | 56 } |
| 57 | 57 |
| 58 void ServiceProcessPrefs::RemovePref(const std::string& key) { | 58 void ServiceProcessPrefs::RemovePref(const std::string& key) { |
| 59 prefs_->RemoveValue(key); | 59 prefs_->RemoveValue(key); |
| 60 } | 60 } |
| OLD | NEW |