| Index: content/renderer/media/peer_connection_handler.cc
|
| diff --git a/content/renderer/media/peer_connection_handler.cc b/content/renderer/media/peer_connection_handler.cc
|
| index 10afa7ad8d4f5ebc12fd95a219974e558f670ab9..12630c8ef8098a8b35f6b5cebe81b6cdf05306bb 100644
|
| --- a/content/renderer/media/peer_connection_handler.cc
|
| +++ b/content/renderer/media/peer_connection_handler.cc
|
| @@ -51,7 +51,7 @@ void PeerConnectionHandler::SetVideoRenderer(
|
| void PeerConnectionHandler::initialize(
|
| const WebKit::WebString& server_configuration,
|
| const WebKit::WebSecurityOrigin& security_origin) {
|
| - native_peer_connection_ = dependency_factory_->CreatePeerConnection(
|
| + native_peer_connection_ = dependency_factory_->CreateRoapPeerConnection(
|
| UTF16ToUTF8(server_configuration),
|
| this);
|
| CHECK(native_peer_connection_);
|
| @@ -152,6 +152,17 @@ void PeerConnectionHandler::OnRemoveStream(
|
| }
|
| }
|
|
|
| +void PeerConnectionHandler::OnIceCandidate(
|
| + const webrtc::IceCandidateInterface* candidate) {
|
| + // TODO(grunell): Implement.
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| +void PeerConnectionHandler::OnIceComplete() {
|
| + // TODO(grunell): Implement.
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| void PeerConnectionHandler::AddStreams(
|
| const WebKit::WebVector<WebKit::WebMediaStreamDescriptor>& streams) {
|
| for (size_t i = 0; i < streams.size(); ++i) {
|
|
|