summaryrefslogtreecommitdiffstats
path: root/remoting/host/in_memory_host_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host/in_memory_host_config.h')
-rw-r--r--remoting/host/in_memory_host_config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/host/in_memory_host_config.h b/remoting/host/in_memory_host_config.h
index 1078c50..998580a 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: