| Index: webrtc/modules/video_capture/objc/video_capture.h | 
| diff --git a/webrtc/modules/video_capture/objc/video_capture.h b/webrtc/modules/video_capture/objc/video_capture.h | 
| index 1f9f42094503ed33efdd40a1365821ae2f3cbc9f..325d5117c1f53d0f26876cf6b629f8271fef15b3 100644 | 
| --- a/webrtc/modules/video_capture/objc/video_capture.h | 
| +++ b/webrtc/modules/video_capture/objc/video_capture.h | 
| @@ -20,11 +20,10 @@ namespace webrtc { | 
| namespace videocapturemodule { | 
| class VideoCaptureIos : public VideoCaptureImpl { | 
| public: | 
| -  explicit VideoCaptureIos(const int32_t capture_id); | 
| +  VideoCaptureIos(); | 
| virtual ~VideoCaptureIos(); | 
|  | 
| static rtc::scoped_refptr<VideoCaptureModule> Create( | 
| -      const int32_t capture_id, | 
| const char* device_unique_id_utf8); | 
|  | 
| // Implementation of VideoCaptureImpl. | 
| @@ -36,7 +35,6 @@ class VideoCaptureIos : public VideoCaptureImpl { | 
| private: | 
| RTCVideoCaptureIosObjC* capture_device_; | 
| bool is_capturing_; | 
| -  int32_t id_; | 
| VideoCaptureCapability capability_; | 
| }; | 
|  | 
|  |