| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CHROMOTING_HOST_H_ | 5 #ifndef REMOTING_HOST_CHROMOTING_HOST_H_ |
| 6 #define REMOTING_HOST_CHROMOTING_HOST_H_ | 6 #define REMOTING_HOST_CHROMOTING_HOST_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 15 #include "base/threading/non_thread_safe.h" | 15 #include "base/threading/non_thread_safe.h" |
| 16 #include "base/threading/thread.h" | 16 #include "base/threading/thread.h" |
| 17 #include "net/base/backoff_entry.h" | 17 #include "net/base/backoff_entry.h" |
| 18 #include "remoting/host/client_session.h" | 18 #include "remoting/host/client_session.h" |
| 19 #include "remoting/host/host_status_monitor.h" | 19 #include "remoting/host/host_status_monitor.h" |
| 20 #include "remoting/host/host_status_observer.h" | 20 #include "remoting/host/host_status_observer.h" |
| 21 #include "remoting/protocol/authenticator.h" | 21 #include "remoting/protocol/authenticator.h" |
| 22 #include "remoting/protocol/connection_to_client.h" | 22 #include "remoting/protocol/connection_to_client.h" |
| 23 #include "remoting/protocol/pairing_registry.h" | 23 #include "remoting/protocol/pairing_registry.h" |
| 24 #include "remoting/protocol/session_manager.h" | 24 #include "remoting/protocol/session_manager.h" |
| 25 #include "third_party/skia/include/core/SkSize.h" | |
| 26 | 25 |
| 27 namespace base { | 26 namespace base { |
| 28 class SingleThreadTaskRunner; | 27 class SingleThreadTaskRunner; |
| 29 } // namespace base | 28 } // namespace base |
| 30 | 29 |
| 31 namespace remoting { | 30 namespace remoting { |
| 32 | 31 |
| 33 namespace protocol { | 32 namespace protocol { |
| 34 class InputStub; | 33 class InputStub; |
| 35 class SessionConfig; | 34 class SessionConfig; |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 scoped_refptr<protocol::PairingRegistry> pairing_registry_; | 204 scoped_refptr<protocol::PairingRegistry> pairing_registry_; |
| 206 | 205 |
| 207 base::WeakPtrFactory<ChromotingHost> weak_factory_; | 206 base::WeakPtrFactory<ChromotingHost> weak_factory_; |
| 208 | 207 |
| 209 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); | 208 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); |
| 210 }; | 209 }; |
| 211 | 210 |
| 212 } // namespace remoting | 211 } // namespace remoting |
| 213 | 212 |
| 214 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ | 213 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ |
| OLD | NEW |