| Index: webrtc/examples/peerconnection/client/conductor.h
 | 
| diff --git a/webrtc/examples/peerconnection/client/conductor.h b/webrtc/examples/peerconnection/client/conductor.h
 | 
| index ba3e271e5132d2b8bdc9b9c680174d5ab8da02d8..726534b9415bd89bb6a0e0c5f196af2b4b3c5ada 100644
 | 
| --- a/webrtc/examples/peerconnection/client/conductor.h
 | 
| +++ b/webrtc/examples/peerconnection/client/conductor.h
 | 
| @@ -14,6 +14,7 @@
 | 
|  
 | 
|  #include <deque>
 | 
|  #include <map>
 | 
| +#include <memory>
 | 
|  #include <set>
 | 
|  #include <string>
 | 
|  
 | 
| @@ -58,7 +59,7 @@ class Conductor
 | 
|    void DeletePeerConnection();
 | 
|    void EnsureStreamingUI();
 | 
|    void AddStreams();
 | 
| -  cricket::VideoCapturer* OpenVideoCaptureDevice();
 | 
| +  std::unique_ptr<cricket::VideoCapturer> OpenVideoCaptureDevice();
 | 
|  
 | 
|    //
 | 
|    // PeerConnectionObserver implementation.
 | 
| 
 |