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.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/remoting/host/in_memory_host_config.h b/remoting/host/in_memory_host_config.h
index e0a876d..1d3f8a6 100644
--- a/remoting/host/in_memory_host_config.h
+++ b/remoting/host/in_memory_host_config.h
@@ -12,9 +12,12 @@
#include "base/synchronization/lock.h"
#include "remoting/host/host_config.h"
-class DictionaryValue;
class Task;
+namespace base {
+class DictionaryValue;
+}
+
namespace remoting {
// In-memory host config. Used by unittests.
@@ -35,7 +38,7 @@ class InMemoryHostConfig : public MutableHostConfig {
protected:
// |lock_| must be locked whenever |values_| is used.
base::Lock lock_;
- scoped_ptr<DictionaryValue> values_;
+ scoped_ptr<base::DictionaryValue> values_;
private:
DISALLOW_COPY_AND_ASSIGN(InMemoryHostConfig);