| Index: remoting/host/in_memory_host_config.cc
|
| diff --git a/remoting/host/in_memory_host_config.cc b/remoting/host/in_memory_host_config.cc
|
| index 7827b8fa6877ec2ec64ede128f16da06a8b187f7..253b563ffcc53a81c32fb4c13f01bc012c738891 100644
|
| --- a/remoting/host/in_memory_host_config.cc
|
| +++ b/remoting/host/in_memory_host_config.cc
|
| @@ -17,12 +17,12 @@ InMemoryHostConfig::~InMemoryHostConfig() {}
|
|
|
| bool InMemoryHostConfig::GetString(const std::string& path,
|
| std::string* out_value) {
|
| - AutoLock auto_lock(lock_);
|
| + base::AutoLock auto_lock(lock_);
|
| return values_->GetString(path, out_value);
|
| }
|
|
|
| bool InMemoryHostConfig::GetBoolean(const std::string& path, bool* out_value) {
|
| - AutoLock auto_lock(lock_);
|
| + base::AutoLock auto_lock(lock_);
|
| return values_->GetBoolean(path, out_value);
|
| }
|
|
|
| @@ -32,12 +32,12 @@ void InMemoryHostConfig::Save() {
|
|
|
| void InMemoryHostConfig::SetString(const std::string& path,
|
| const std::string& in_value) {
|
| - AutoLock auto_lock(lock_);
|
| + base::AutoLock auto_lock(lock_);
|
| values_->SetString(path, in_value);
|
| }
|
|
|
| void InMemoryHostConfig::SetBoolean(const std::string& path, bool in_value) {
|
| - AutoLock auto_lock(lock_);
|
| + base::AutoLock auto_lock(lock_);
|
| values_->SetBoolean(path, in_value);
|
| }
|
|
|
|
|