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

Unified Diff: webrtc/media/base/mediachannel.h

Issue 2600813002: Revert of Adding error output param to SetConfiguration, using new RTCError type. (Closed)
Patch Set: Created 4 years 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 | « webrtc/api/peerconnectionproxy.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/media/base/mediachannel.h
diff --git a/webrtc/media/base/mediachannel.h b/webrtc/media/base/mediachannel.h
index 6d13e6198fd5d9812fca7713e7512fadc3195dfd..d66424014b7cef41c41ba030f7c39c883c8b4c83 100644
--- a/webrtc/media/base/mediachannel.h
+++ b/webrtc/media/base/mediachannel.h
@@ -133,20 +133,6 @@
// Enables periodic bandwidth probing in application-limited region.
bool periodic_alr_bandwidth_probing = false;
} video;
-
- bool operator==(const MediaConfig& o) const {
- return enable_dscp == o.enable_dscp &&
- video.enable_cpu_overuse_detection ==
- o.video.enable_cpu_overuse_detection &&
- video.suspend_below_min_bitrate ==
- o.video.suspend_below_min_bitrate &&
- video.disable_prerenderer_smoothing ==
- o.video.disable_prerenderer_smoothing &&
- video.periodic_alr_bandwidth_probing ==
- o.video.periodic_alr_bandwidth_probing;
- }
-
- bool operator!=(const MediaConfig& o) const { return !(*this == o); }
};
// Options that can be applied to a VoiceMediaChannel or a VoiceMediaEngine.
« no previous file with comments | « webrtc/api/peerconnectionproxy.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698