| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2012 The WebRTC Project Authors. All rights reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #ifndef TALK_EXAMPLES_PEERCONNECTION_CLIENT_CONDUCTOR_H_ | 11 #ifndef WEBRTC_EXAMPLES_PEERCONNECTION_CLIENT_CONDUCTOR_H_ |
| 12 #define TALK_EXAMPLES_PEERCONNECTION_CLIENT_CONDUCTOR_H_ | 12 #define WEBRTC_EXAMPLES_PEERCONNECTION_CLIENT_CONDUCTOR_H_ |
| 13 #pragma once | 13 #pragma once |
| 14 | 14 |
| 15 #include <deque> | 15 #include <deque> |
| 16 #include <map> | 16 #include <map> |
| 17 #include <set> | 17 #include <set> |
| 18 #include <string> | 18 #include <string> |
| 19 | 19 |
| 20 #include "talk/app/webrtc/mediastreaminterface.h" | 20 #include "talk/app/webrtc/mediastreaminterface.h" |
| 21 #include "talk/app/webrtc/peerconnectioninterface.h" | 21 #include "talk/app/webrtc/peerconnectioninterface.h" |
| 22 #include "webrtc/examples/peerconnection/client/main_wnd.h" | 22 #include "webrtc/examples/peerconnection/client/main_wnd.h" |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 rtc::scoped_refptr<webrtc::PeerConnectionFactoryInterface> | 119 rtc::scoped_refptr<webrtc::PeerConnectionFactoryInterface> |
| 120 peer_connection_factory_; | 120 peer_connection_factory_; |
| 121 PeerConnectionClient* client_; | 121 PeerConnectionClient* client_; |
| 122 MainWindow* main_wnd_; | 122 MainWindow* main_wnd_; |
| 123 std::deque<std::string*> pending_messages_; | 123 std::deque<std::string*> pending_messages_; |
| 124 std::map<std::string, rtc::scoped_refptr<webrtc::MediaStreamInterface> > | 124 std::map<std::string, rtc::scoped_refptr<webrtc::MediaStreamInterface> > |
| 125 active_streams_; | 125 active_streams_; |
| 126 std::string server_; | 126 std::string server_; |
| 127 }; | 127 }; |
| 128 | 128 |
| 129 #endif // TALK_EXAMPLES_PEERCONNECTION_CLIENT_CONDUCTOR_H_ | 129 #endif // WEBRTC_EXAMPLES_PEERCONNECTION_CLIENT_CONDUCTOR_H_ |
| OLD | NEW |