| Index: remoting/host/in_memory_host_config.h
|
| diff --git a/remoting/host/in_memory_host_config.h b/remoting/host/in_memory_host_config.h
|
| index 1078c503855239e4e3c156137ae44e578274b01c..998580a2adfe9edc294361359c18b1a7bfc5b8f9 100644
|
| --- a/remoting/host/in_memory_host_config.h
|
| +++ b/remoting/host/in_memory_host_config.h
|
| @@ -7,9 +7,9 @@
|
|
|
| #include <string>
|
|
|
| -#include "base/lock.h"
|
| #include "base/ref_counted.h"
|
| #include "base/scoped_ptr.h"
|
| +#include "base/synchronization/lock.h"
|
| #include "remoting/host/host_config.h"
|
|
|
| class DictionaryValue;
|
| @@ -34,7 +34,7 @@ class InMemoryHostConfig : public MutableHostConfig {
|
|
|
| protected:
|
| // |lock_| must be locked whenever |values_| is used.
|
| - Lock lock_;
|
| + base::Lock lock_;
|
| scoped_ptr<DictionaryValue> values_;
|
|
|
| private:
|
|
|