OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "chromecast/common/chromecast_config.h" | 5 #include "chromecast/common/chromecast_config.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/files/file_util.h" | 10 #include "base/files/file_util.h" |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 DCHECK(thread_checker_.CalledOnValidThread()); | 131 DCHECK(thread_checker_.CalledOnValidThread()); |
132 if (pref_service_->IsUserModifiablePreference(key.c_str())) { | 132 if (pref_service_->IsUserModifiablePreference(key.c_str())) { |
133 VLOG(1) << "Set config: key=" << key << ", value=" << value; | 133 VLOG(1) << "Set config: key=" << key << ", value=" << value; |
134 pref_service_->SetInteger(key.c_str(), value); | 134 pref_service_->SetInteger(key.c_str(), value); |
135 } else { | 135 } else { |
136 LOG(ERROR) << "Cannot set read-only config: key=" << key | 136 LOG(ERROR) << "Cannot set read-only config: key=" << key |
137 << ", value=" << value; | 137 << ", value=" << value; |
138 } | 138 } |
139 } | 139 } |
140 | 140 |
| 141 bool ChromecastConfig::HasValue(const std::string& key) const { |
| 142 DCHECK(thread_checker_.CalledOnValidThread()); |
| 143 return pref_service_->HasPrefPath(key.c_str()); |
| 144 } |
| 145 |
141 } // namespace chromecast | 146 } // namespace chromecast |
OLD | NEW |