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 #include "remoting/jingle_glue/jingle_thread.h" | 5 #include "remoting/jingle_glue/jingle_thread.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/message_loop_proxy.h" | 9 #include "base/message_loop_proxy.h" |
10 #include "base/message_pump.h" | 10 #include "base/message_pump.h" |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 | 195 |
196 base::MessageLoopProxy* JingleThread::message_loop_proxy() { | 196 base::MessageLoopProxy* JingleThread::message_loop_proxy() { |
197 return message_loop_proxy_; | 197 return message_loop_proxy_; |
198 } | 198 } |
199 | 199 |
200 TaskPump* JingleThread::task_pump() { | 200 TaskPump* JingleThread::task_pump() { |
201 return task_pump_; | 201 return task_pump_; |
202 } | 202 } |
203 | 203 |
204 } // namespace remoting | 204 } // namespace remoting |
OLD | NEW |