| Index: webrtc/api/jsepsessiondescription.h | 
| diff --git a/webrtc/api/jsepsessiondescription.h b/webrtc/api/jsepsessiondescription.h | 
| index d4b4908b2341b4ba4ee901c2b48d8c457d1f3302..56dd806110d192baf2777edeb8857eea0ef9a5d5 100644 | 
| --- a/webrtc/api/jsepsessiondescription.h | 
| +++ b/webrtc/api/jsepsessiondescription.h | 
| @@ -13,6 +13,7 @@ | 
| #ifndef WEBRTC_API_JSEPSESSIONDESCRIPTION_H_ | 
| #define WEBRTC_API_JSEPSESSIONDESCRIPTION_H_ | 
|  | 
| +#include <memory> | 
| #include <string> | 
| #include <vector> | 
|  | 
| @@ -75,7 +76,7 @@ class JsepSessionDescription : public SessionDescriptionInterface { | 
| static const int kMaxVideoCodecHeight; | 
|  | 
| private: | 
| -  rtc::scoped_ptr<cricket::SessionDescription> description_; | 
| +  std::unique_ptr<cricket::SessionDescription> description_; | 
| std::string session_id_; | 
| std::string session_version_; | 
| std::string type_; | 
|  |