| 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_LIBJINGLE_TRANSPORT_FACTORY_H_ | 5 #ifndef REMOTING_PROTOCOL_LIBJINGLE_TRANSPORT_FACTORY_H_ |
| 6 #define REMOTING_PROTOCOL_LIBJINGLE_TRANSPORT_FACTORY_H_ | 6 #define REMOTING_PROTOCOL_LIBJINGLE_TRANSPORT_FACTORY_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 | 9 |
| 10 #include "base/callback_forward.h" | 10 #include "base/callback_forward.h" |
| 11 #include "remoting/jingle_glue/network_settings.h" | 11 #include "remoting/protocol/network_settings.h" |
| 12 #include "remoting/protocol/transport.h" | 12 #include "remoting/protocol/transport.h" |
| 13 | 13 |
| 14 namespace cricket { | 14 namespace cricket { |
| 15 class HttpPortAllocatorBase; | 15 class HttpPortAllocatorBase; |
| 16 class PortAllocator; | 16 class PortAllocator; |
| 17 } // namespace cricket | 17 } // namespace cricket |
| 18 | 18 |
| 19 namespace net { | 19 namespace net { |
| 20 class URLRequestContextGetter; | 20 class URLRequestContextGetter; |
| 21 } // namespace net | 21 } // namespace net |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 // be called once the |jingle_info_request_| is finished. | 67 // be called once the |jingle_info_request_| is finished. |
| 68 std::list<base::Closure> on_jingle_info_callbacks_; | 68 std::list<base::Closure> on_jingle_info_callbacks_; |
| 69 | 69 |
| 70 DISALLOW_COPY_AND_ASSIGN(LibjingleTransportFactory); | 70 DISALLOW_COPY_AND_ASSIGN(LibjingleTransportFactory); |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 } // namespace protocol | 73 } // namespace protocol |
| 74 } // namespace remoting | 74 } // namespace remoting |
| 75 | 75 |
| 76 #endif // REMOTING_PROTOCOL_LIBJINGLE_TRANSPORT_FACTORY_H_ | 76 #endif // REMOTING_PROTOCOL_LIBJINGLE_TRANSPORT_FACTORY_H_ |
| OLD | NEW |