Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1289)

Unified Diff: content/renderer/media/peer_connection_handler_jsep.cc

Issue 10824143: Rolling libjingle r164. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/renderer/media/peer_connection_handler_jsep.cc
===================================================================
--- content/renderer/media/peer_connection_handler_jsep.cc (revision 149659)
+++ content/renderer/media/peer_connection_handler_jsep.cc (working copy)
@@ -182,13 +182,11 @@
void PeerConnectionHandlerJsep::addStream(
const WebKit::WebMediaStreamDescriptor& stream) {
AddStream(stream);
- native_peer_connection_->CommitStreamChanges();
}
void PeerConnectionHandlerJsep::removeStream(
const WebKit::WebMediaStreamDescriptor& stream) {
RemoveStream(stream);
- native_peer_connection_->CommitStreamChanges();
}
void PeerConnectionHandlerJsep::stop() {
@@ -201,16 +199,6 @@
NOTIMPLEMENTED();
}
-void PeerConnectionHandlerJsep::OnMessage(const std::string& msg) {
- // TODO(grunell): Implement.
- NOTIMPLEMENTED();
-}
-
-void PeerConnectionHandlerJsep::OnSignalingMessage(const std::string& msg) {
- // Not used by JSEP PeerConnection.
- NOTREACHED();
-}
-
void PeerConnectionHandlerJsep::OnStateChange(StateType state_changed) {
switch (state_changed) {
case kReadyState:
@@ -245,10 +233,6 @@
// TODO(grunell): Implement when available in native PeerConnection.
NOTIMPLEMENTED();
break;
- case kSdpState:
- // Not used by JSEP.
- NOTREACHED();
- break;
default:
NOTREACHED();
break;
« no previous file with comments | « content/renderer/media/peer_connection_handler_jsep.h ('k') | content/renderer/media/peer_connection_handler_jsep_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698