Index: webrtc/api/peerconnectioninterface.h |
diff --git a/webrtc/api/peerconnectioninterface.h b/webrtc/api/peerconnectioninterface.h |
index ea056bfc98fa2a39a1935a911988e3a1be35d897..a597c986b17601e0be88b3a4225cb356979bdff2 100644 |
--- a/webrtc/api/peerconnectioninterface.h |
+++ b/webrtc/api/peerconnectioninterface.h |
@@ -480,6 +480,11 @@ class PeerConnectionInterface : public rtc::RefCountInterface { |
return false; |
} |
virtual bool UpdateIce(const IceServers& configuration) { return false; } |
+ // TODO(deadbeef): Make this pure virtual once all Chrome subclasses of |
+ // PeerConnectionInterface implement it. |
+ virtual PeerConnectionInterface::RTCConfiguration GetConfiguration() { |
+ return PeerConnectionInterface::RTCConfiguration(); |
+ } |
// Sets the PeerConnection's global configuration to |config|. |
// Any changes to STUN/TURN servers or ICE candidate policy will affect the |
// next gathering phase, and cause the next call to createOffer to generate |