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

Unified Diff: third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h

Issue 2631433002: Rename RTCPeerConnection.updateIce to setConfiguration and make it work. (Closed)
Patch Set: Fixing mock PC handler, using DCHECK for default case in switch statement Created 3 years, 11 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: third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h
diff --git a/third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h b/third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h
index 285bcb6b657629f8942da32b6681712fb43d774a..e3408d5122dc57725ce53217fa953bdc24c7872c 100644
--- a/third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h
+++ b/third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h
@@ -41,6 +41,7 @@ class WebMediaStreamTrack;
class WebRTCAnswerOptions;
class WebRTCDTMFSenderHandler;
class WebRTCDataChannelHandler;
+class WebRTCError;
class WebRTCICECandidate;
class WebRTCOfferOptions;
class WebRTCSessionDescription;
@@ -72,7 +73,7 @@ class WebRTCPeerConnectionHandler {
const WebRTCSessionDescription&) = 0;
virtual WebRTCSessionDescription localDescription() = 0;
virtual WebRTCSessionDescription remoteDescription() = 0;
- virtual bool setConfiguration(const WebRTCConfiguration&) = 0;
+ virtual bool setConfiguration(const WebRTCConfiguration&, WebRTCError&) = 0;
// DEPRECATED
virtual bool addICECandidate(const WebRTCICECandidate&) { return false; }

Powered by Google App Engine
This is Rietveld 408576698