Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Side by Side Diff: remoting/host/in_memory_host_config.h

Issue 3303001: Basic user access check for chromoting host. (Closed)
Patch Set: - Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/host/host_config.h ('k') | remoting/host/in_memory_host_config.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef REMOTING_HOST_IN_MEMORY_HOST_CONFIG_H_
6 #define REMOTING_HOST_IN_MEMORY_HOST_CONFIG_H_
7
8 #include <string>
9
10 #include "base/file_path.h"
11 #include "base/lock.h"
12 #include "base/ref_counted.h"
13 #include "base/scoped_ptr.h"
14 #include "remoting/host/host_config.h"
15
16 class DictionaryValue;
17 class Task;
18
19 namespace remoting {
20
21 // In-memory host config. Used by unittests.
22 class InMemoryHostConfig : public MutableHostConfig {
23 public:
24 InMemoryHostConfig();
25
26 // MutableHostConfig interface.
27 virtual bool GetString(const std::string& path, std::string* out_value);
28
29 virtual void Update(Task* task);
30
31 virtual void SetString(const std::string& path, const std::string& in_value);
32
33 private:
34 Lock lock_;
35 scoped_ptr<DictionaryValue> values_;
36
37 DISALLOW_COPY_AND_ASSIGN(InMemoryHostConfig);
38 };
39
40 } // namespace remoting
41
42 #endif // REMOTING_HOST_IN_MEMORY_HOST_CONFIG_H_
OLDNEW
« no previous file with comments | « remoting/host/host_config.h ('k') | remoting/host/in_memory_host_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698