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

Unified Diff: remoting/host/cast_extension_session.cc

Issue 1668413003: Remove logging of unused and deprecated PeerConnection::Observer callbacks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « remoting/host/cast_extension_session.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/cast_extension_session.cc
diff --git a/remoting/host/cast_extension_session.cc b/remoting/host/cast_extension_session.cc
index 4cd3dc4027c9fe93c1627055c68703bc6324e795..f9c6bb6e4b9ee2b254d42e5ae25b22280c8a4a94 100644
--- a/remoting/host/cast_extension_session.cc
+++ b/remoting/host/cast_extension_session.cc
@@ -577,11 +577,6 @@ void CastExtensionSession::OnSignalingChange(
VLOG(1) << "PeerConnectionObserver: SignalingState changed to:" << new_state;
}
-void CastExtensionSession::OnStateChange(
- webrtc::PeerConnectionObserver::StateType state_changed) {
- VLOG(1) << "PeerConnectionObserver: StateType changed to: " << state_changed;
-}
-
void CastExtensionSession::OnAddStream(webrtc::MediaStreamInterface* stream) {
VLOG(1) << "PeerConnectionObserver: stream added: " << stream->label();
}
@@ -623,10 +618,6 @@ void CastExtensionSession::OnIceGatheringChange(
<< new_state;
}
-void CastExtensionSession::OnIceComplete() {
- VLOG(1) << "PeerConnectionObserver: all ICE candidates found.";
-}
-
void CastExtensionSession::OnIceCandidate(
const webrtc::IceCandidateInterface* candidate) {
std::string candidate_str;
« no previous file with comments | « remoting/host/cast_extension_session.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698