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

Unified Diff: content/renderer/media/mock_peer_connection_impl.h

Issue 10833061: Rolling libjingle revison r163. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 5 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: content/renderer/media/mock_peer_connection_impl.h
===================================================================
--- content/renderer/media/mock_peer_connection_impl.h (revision 148953)
+++ content/renderer/media/mock_peer_connection_impl.h (working copy)
@@ -87,7 +87,8 @@
Action action() const { return action_; }
const std::string& description_sdp() const { return description_sdp_; }
IceOptions ice_options() const { return ice_options_; }
- const std::string& ice_label() const { return ice_label_; }
+ const std::string& sdp_mid() const { return sdp_mid_; }
+ int sdp_mline_index() const { return sdp_mline_index_; }
const std::string& ice_sdp() const { return ice_sdp_; }
static const char kDummyOffer[];
@@ -111,7 +112,8 @@
Action action_;
std::string description_sdp_;
IceOptions ice_options_;
- std::string ice_label_;
+ std::string sdp_mid_;
+ int sdp_mline_index_;
std::string ice_sdp_;
ReadyState ready_state_;

Powered by Google App Engine
This is Rietveld 408576698