summaryrefslogtreecommitdiffstats
path: root/remoting/host/json_host_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host/json_host_config.h')
-rw-r--r--remoting/host/json_host_config.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/remoting/host/json_host_config.h b/remoting/host/json_host_config.h
index ac10272..8d73e66 100644
--- a/remoting/host/json_host_config.h
+++ b/remoting/host/json_host_config.h
@@ -7,13 +7,13 @@
#include <string>
+#include "base/file_path.h"
#include "base/lock.h"
#include "base/ref_counted.h"
#include "base/scoped_ptr.h"
#include "remoting/host/host_config.h"
-class FilePath;
-class JsonPrefStore;
+class DictionaryValue;
class Task;
namespace base {
@@ -46,9 +46,10 @@ class JsonHostConfig : public MutableHostConfig {
private:
void DoWrite();
- // |lock_| must be locked whenever we access pref_store_;
+ // |lock_| must be locked whenever we access values_;
Lock lock_;
- scoped_ptr<JsonPrefStore> pref_store_;
+ FilePath filename_;
+ scoped_ptr<DictionaryValue> values_;
scoped_refptr<base::MessageLoopProxy> message_loop_proxy_;
DISALLOW_COPY_AND_ASSIGN(JsonHostConfig);