| 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_PROTOCOL_CONNECTION_TO_HOST_H_ | 5 #ifndef REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_ |
| 6 #define REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_ | 6 #define REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/threading/non_thread_safe.h" | 14 #include "base/threading/non_thread_safe.h" |
| 15 #include "base/timer/timer.h" | 15 #include "base/timer/timer.h" |
| 16 #include "remoting/jingle_glue/signal_strategy.h" | |
| 17 #include "remoting/proto/internal.pb.h" | 16 #include "remoting/proto/internal.pb.h" |
| 18 #include "remoting/protocol/clipboard_filter.h" | 17 #include "remoting/protocol/clipboard_filter.h" |
| 19 #include "remoting/protocol/errors.h" | 18 #include "remoting/protocol/errors.h" |
| 20 #include "remoting/protocol/input_filter.h" | 19 #include "remoting/protocol/input_filter.h" |
| 21 #include "remoting/protocol/message_reader.h" | 20 #include "remoting/protocol/message_reader.h" |
| 22 #include "remoting/protocol/monitored_video_stub.h" | 21 #include "remoting/protocol/monitored_video_stub.h" |
| 23 #include "remoting/protocol/session.h" | 22 #include "remoting/protocol/session.h" |
| 24 #include "remoting/protocol/session_manager.h" | 23 #include "remoting/protocol/session_manager.h" |
| 24 #include "remoting/signaling/signal_strategy.h" |
| 25 | 25 |
| 26 namespace remoting { | 26 namespace remoting { |
| 27 | 27 |
| 28 class XmppProxy; | 28 class XmppProxy; |
| 29 class VideoPacket; | 29 class VideoPacket; |
| 30 | 30 |
| 31 namespace protocol { | 31 namespace protocol { |
| 32 | 32 |
| 33 class AudioReader; | 33 class AudioReader; |
| 34 class AudioStub; | 34 class AudioStub; |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 ErrorCode error_; | 178 ErrorCode error_; |
| 179 | 179 |
| 180 private: | 180 private: |
| 181 DISALLOW_COPY_AND_ASSIGN(ConnectionToHost); | 181 DISALLOW_COPY_AND_ASSIGN(ConnectionToHost); |
| 182 }; | 182 }; |
| 183 | 183 |
| 184 } // namespace protocol | 184 } // namespace protocol |
| 185 } // namespace remoting | 185 } // namespace remoting |
| 186 | 186 |
| 187 #endif // REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_ | 187 #endif // REMOTING_PROTOCOL_CONNECTION_TO_HOST_H_ |
| OLD | NEW |