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 #include "remoting/protocol/jingle_connection_to_host.h" | 5 #include "remoting/protocol/jingle_connection_to_host.h" |
6 | 6 |
7 #include "base/callback.h" | 7 #include "base/callback.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "remoting/base/constants.h" | 9 #include "remoting/base/constants.h" |
10 // TODO(hclam): Remove this header once MessageDispatcher is used. | |
11 #include "remoting/base/multiple_array_input_stream.h" | |
12 #include "remoting/jingle_glue/jingle_thread.h" | 10 #include "remoting/jingle_glue/jingle_thread.h" |
13 #include "remoting/protocol/jingle_session_manager.h" | 11 #include "remoting/protocol/jingle_session_manager.h" |
14 #include "remoting/protocol/video_reader.h" | 12 #include "remoting/protocol/video_reader.h" |
15 #include "remoting/protocol/video_stub.h" | 13 #include "remoting/protocol/video_stub.h" |
16 #include "remoting/protocol/util.h" | 14 #include "remoting/protocol/util.h" |
17 | 15 |
18 namespace remoting { | 16 namespace remoting { |
19 namespace protocol { | 17 namespace protocol { |
20 | 18 |
21 JingleConnectionToHost::JingleConnectionToHost(JingleThread* thread) | 19 JingleConnectionToHost::JingleConnectionToHost(JingleThread* thread) |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 break; | 174 break; |
177 } | 175 } |
178 } | 176 } |
179 | 177 |
180 MessageLoop* JingleConnectionToHost::message_loop() { | 178 MessageLoop* JingleConnectionToHost::message_loop() { |
181 return thread_->message_loop(); | 179 return thread_->message_loop(); |
182 } | 180 } |
183 | 181 |
184 } // namespace protocol | 182 } // namespace protocol |
185 } // namespace remoting | 183 } // namespace remoting |
OLD | NEW |