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

Unified Diff: webrtc/api/peerconnection.h

Issue 2590753002: Implement current/pending session description methods. (Closed)
Patch Set: Fixing null pointer deref. 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 | « no previous file | webrtc/api/peerconnection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/peerconnection.h
diff --git a/webrtc/api/peerconnection.h b/webrtc/api/peerconnection.h
index 70fd86779f538ad07df0308c65c08cfbacd2ab22..5269e3ae498ed3dfa2210da13ba40139ec8170af 100644
--- a/webrtc/api/peerconnection.h
+++ b/webrtc/api/peerconnection.h
@@ -113,6 +113,12 @@ class PeerConnection : public PeerConnectionInterface,
const SessionDescriptionInterface* local_description() const override;
const SessionDescriptionInterface* remote_description() const override;
+ const SessionDescriptionInterface* current_local_description() const override;
+ const SessionDescriptionInterface* current_remote_description()
+ const override;
+ const SessionDescriptionInterface* pending_local_description() const override;
+ const SessionDescriptionInterface* pending_remote_description()
+ const override;
// JSEP01
// Deprecated, use version without constraints.
« no previous file with comments | « no previous file | webrtc/api/peerconnection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698