| 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/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/scoped_vector.h" | 14 #include "base/memory/scoped_vector.h" |
| 14 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 15 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
| 16 #include "base/threading/non_thread_safe.h" | 17 #include "base/threading/non_thread_safe.h" |
| 17 #include "base/threading/thread.h" | 18 #include "base/threading/thread.h" |
| 18 #include "net/base/backoff_entry.h" | 19 #include "net/base/backoff_entry.h" |
| 19 #include "remoting/host/client_session.h" | 20 #include "remoting/host/client_session.h" |
| 20 #include "remoting/host/host_extension.h" | 21 #include "remoting/host/host_extension.h" |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 HostExtensionList extensions_; | 188 HostExtensionList extensions_; |
| 188 | 189 |
| 189 base::WeakPtrFactory<ChromotingHost> weak_factory_; | 190 base::WeakPtrFactory<ChromotingHost> weak_factory_; |
| 190 | 191 |
| 191 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); | 192 DISALLOW_COPY_AND_ASSIGN(ChromotingHost); |
| 192 }; | 193 }; |
| 193 | 194 |
| 194 } // namespace remoting | 195 } // namespace remoting |
| 195 | 196 |
| 196 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ | 197 #endif // REMOTING_HOST_CHROMOTING_HOST_H_ |
| OLD | NEW |