| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 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_JSON_HOST_CONFIG_H_ | 5 #ifndef REMOTING_HOST_JSON_HOST_CONFIG_H_ |
| 6 #define REMOTING_HOST_JSON_HOST_CONFIG_H_ | 6 #define REMOTING_HOST_JSON_HOST_CONFIG_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| 11 #include "base/lock.h" | |
| 12 #include "base/ref_counted.h" | 11 #include "base/ref_counted.h" |
| 13 #include "base/scoped_ptr.h" | 12 #include "base/scoped_ptr.h" |
| 14 #include "remoting/host/in_memory_host_config.h" | 13 #include "remoting/host/in_memory_host_config.h" |
| 15 | 14 |
| 16 class DictionaryValue; | 15 class DictionaryValue; |
| 17 class Task; | 16 class Task; |
| 18 | 17 |
| 19 namespace base { | 18 namespace base { |
| 20 class MessageLoopProxy; | 19 class MessageLoopProxy; |
| 21 } // namespace base | 20 } // namespace base |
| (...skipping 17 matching lines...) Expand all Loading... |
| 39 | 38 |
| 40 FilePath filename_; | 39 FilePath filename_; |
| 41 scoped_refptr<base::MessageLoopProxy> message_loop_proxy_; | 40 scoped_refptr<base::MessageLoopProxy> message_loop_proxy_; |
| 42 | 41 |
| 43 DISALLOW_COPY_AND_ASSIGN(JsonHostConfig); | 42 DISALLOW_COPY_AND_ASSIGN(JsonHostConfig); |
| 44 }; | 43 }; |
| 45 | 44 |
| 46 } // namespace remoting | 45 } // namespace remoting |
| 47 | 46 |
| 48 #endif // REMOTING_HOST_JSON_HOST_CONFIG_H_ | 47 #endif // REMOTING_HOST_JSON_HOST_CONFIG_H_ |
| OLD | NEW |