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

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

Issue 8536002: Cleanup: Remove unneeded forward declarations from remoting. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « remoting/host/host_status_observer.h ('k') | remoting/host/json_host_config.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef REMOTING_HOST_IN_MEMORY_HOST_CONFIG_H_ 5 #ifndef REMOTING_HOST_IN_MEMORY_HOST_CONFIG_H_
6 #define REMOTING_HOST_IN_MEMORY_HOST_CONFIG_H_ 6 #define REMOTING_HOST_IN_MEMORY_HOST_CONFIG_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/synchronization/lock.h" 12 #include "base/synchronization/lock.h"
13 #include "remoting/host/host_config.h" 13 #include "remoting/host/host_config.h"
14 14
15 class Task;
16
17 namespace base { 15 namespace base {
18 class DictionaryValue; 16 class DictionaryValue;
19 } 17 }
20 18
21 namespace remoting { 19 namespace remoting {
22 20
23 // In-memory host config. Used by unittests. 21 // In-memory host config. Used by unittests.
24 class InMemoryHostConfig : public MutableHostConfig { 22 class InMemoryHostConfig : public MutableHostConfig {
25 public: 23 public:
26 InMemoryHostConfig(); 24 InMemoryHostConfig();
(...skipping 13 matching lines...) Expand all
40 base::Lock lock_; 38 base::Lock lock_;
41 scoped_ptr<base::DictionaryValue> values_; 39 scoped_ptr<base::DictionaryValue> values_;
42 40
43 private: 41 private:
44 DISALLOW_COPY_AND_ASSIGN(InMemoryHostConfig); 42 DISALLOW_COPY_AND_ASSIGN(InMemoryHostConfig);
45 }; 43 };
46 44
47 } // namespace remoting 45 } // namespace remoting
48 46
49 #endif // REMOTING_HOST_IN_MEMORY_HOST_CONFIG_H_ 47 #endif // REMOTING_HOST_IN_MEMORY_HOST_CONFIG_H_
OLDNEW
« no previous file with comments | « remoting/host/host_status_observer.h ('k') | remoting/host/json_host_config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698