Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1179)

Side by Side Diff: chrome/service/service_process_prefs.cc

Issue 8198007: Remove PrefService::ScheduleSavePersistentPrefs and SavePersistentPrefs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« chrome/common/json_pref_store.h ('K') | « chrome/common/persistent_pref_store.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698