| 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/message_loop_proxy.h" |
| 7 #include "base/values.h" | 8 #include "base/values.h" |
| 8 | 9 |
| 9 ServiceProcessPrefs::ServiceProcessPrefs( | 10 ServiceProcessPrefs::ServiceProcessPrefs( |
| 10 const FilePath& pref_filename, | 11 const FilePath& pref_filename, |
| 11 base::MessageLoopProxy* file_message_loop_proxy) | 12 base::SequencedWorkerPool* blocking_pool) |
| 12 : prefs_(new JsonPrefStore(pref_filename, file_message_loop_proxy)) { | 13 : prefs_(JsonPrefStore::Create( |
| 14 pref_filename, |
| 15 JsonPrefStore::GetTaskRunnerForFile(pref_filename, blocking_pool))) { |
| 13 } | 16 } |
| 14 | 17 |
| 15 ServiceProcessPrefs::~ServiceProcessPrefs() {} | 18 ServiceProcessPrefs::~ServiceProcessPrefs() {} |
| 16 | 19 |
| 17 void ServiceProcessPrefs::ReadPrefs() { | 20 void ServiceProcessPrefs::ReadPrefs() { |
| 18 prefs_->ReadPrefs(); | 21 prefs_->ReadPrefs(); |
| 19 } | 22 } |
| 20 | 23 |
| 21 void ServiceProcessPrefs::WritePrefs() { | 24 void ServiceProcessPrefs::WritePrefs() { |
| 22 prefs_->CommitPendingWrite(); | 25 prefs_->CommitPendingWrite(); |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 } | 80 } |
| 78 | 81 |
| 79 void ServiceProcessPrefs::SetValue(const std::string& key, base::Value* value) { | 82 void ServiceProcessPrefs::SetValue(const std::string& key, base::Value* value) { |
| 80 prefs_->SetValue(key, value); | 83 prefs_->SetValue(key, value); |
| 81 } | 84 } |
| 82 | 85 |
| 83 void ServiceProcessPrefs::RemovePref(const std::string& key) { | 86 void ServiceProcessPrefs::RemovePref(const std::string& key) { |
| 84 prefs_->RemoveValue(key); | 87 prefs_->RemoveValue(key); |
| 85 } | 88 } |
| 86 | 89 |
| OLD | NEW |