| Index: talk/app/webrtc/webrtcsdp.cc
 | 
| diff --git a/talk/app/webrtc/webrtcsdp.cc b/talk/app/webrtc/webrtcsdp.cc
 | 
| index 5518233f2f7da5371992c632df1ed36eb80db7c7..28d4e9e8b156dcf9b71f935df7a0ae2952a9db2d 100644
 | 
| --- a/talk/app/webrtc/webrtcsdp.cc
 | 
| +++ b/talk/app/webrtc/webrtcsdp.cc
 | 
| @@ -77,7 +77,6 @@ using cricket::kCodecParamMaxPlaybackRate;
 | 
|  using cricket::kCodecParamAssociatedPayloadType;
 | 
|  using cricket::MediaContentDescription;
 | 
|  using cricket::MediaType;
 | 
| -using cricket::NS_JINGLE_ICE_UDP;
 | 
|  using cricket::RtpHeaderExtension;
 | 
|  using cricket::SsrcGroup;
 | 
|  using cricket::StreamParams;
 | 
| @@ -892,8 +891,7 @@ bool SdpDeserialize(const std::string& message,
 | 
|                      SdpParseError* error) {
 | 
|    std::string session_id;
 | 
|    std::string session_version;
 | 
| -  TransportDescription session_td(NS_JINGLE_ICE_UDP,
 | 
| -                                  std::string(), std::string());
 | 
| +  TransportDescription session_td("", "");
 | 
|    RtpHeaderExtensions session_extmaps;
 | 
|    cricket::SessionDescription* desc = new cricket::SessionDescription();
 | 
|    std::vector<JsepIceCandidate*> candidates;
 | 
| @@ -2195,8 +2193,7 @@ bool ParseMediaDescription(const std::string& message,
 | 
|  
 | 
|      // Make a temporary TransportDescription based on |session_td|.
 | 
|      // Some of this gets overwritten by ParseContent.
 | 
| -    TransportDescription transport(NS_JINGLE_ICE_UDP,
 | 
| -                                   session_td.transport_options,
 | 
| +    TransportDescription transport(session_td.transport_options,
 | 
|                                     session_td.ice_ufrag,
 | 
|                                     session_td.ice_pwd,
 | 
|                                     session_td.ice_mode,
 | 
| 
 |