summaryrefslogtreecommitdiffstats
path: root/remoting/host/in_memory_host_config.h
blob: 82b9f6f8b4745fa2e91326c62efef8cc0d33a7be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef REMOTING_HOST_IN_MEMORY_HOST_CONFIG_H_
#define REMOTING_HOST_IN_MEMORY_HOST_CONFIG_H_

#include <string>

#include "base/memory/scoped_ptr.h"
#include "base/threading/non_thread_safe.h"
#include "remoting/host/host_config.h"

namespace base {
class DictionaryValue;
}  // namespace base

namespace remoting {

// In-memory host config. Used by unittests.
class InMemoryHostConfig : public MutableHostConfig,
                           public base::NonThreadSafe {
 public:
  InMemoryHostConfig();
  virtual ~InMemoryHostConfig();

  // MutableHostConfig interface.
  virtual bool GetString(const std::string& path,
                         std::string* out_value) const OVERRIDE;
  virtual bool GetBoolean(const std::string& path,
                          bool* out_value) const OVERRIDE;

  virtual void SetString(const std::string& path,
                         const std::string& in_value) OVERRIDE;
  virtual void SetBoolean(const std::string& path, bool in_value) OVERRIDE;

  virtual bool Save() OVERRIDE;

 protected:
  scoped_ptr<base::DictionaryValue> values_;

 private:
  DISALLOW_COPY_AND_ASSIGN(InMemoryHostConfig);
};

}  // namespace remoting

#endif  // REMOTING_HOST_IN_MEMORY_HOST_CONFIG_H_