| Index: webrtc/media/base/fakemediaengine.h
 | 
| diff --git a/webrtc/media/base/fakemediaengine.h b/webrtc/media/base/fakemediaengine.h
 | 
| index afd262bb5e92263951cc85e7be3256e5d867801c..070760883efef1bd79e7f18b24cfb12a118a9db4 100644
 | 
| --- a/webrtc/media/base/fakemediaengine.h
 | 
| +++ b/webrtc/media/base/fakemediaengine.h
 | 
| @@ -750,11 +750,6 @@ class FakeVideoEngine : public FakeBaseEngine {
 | 
|    const std::vector<VideoCodec>& codecs() const { return codecs_; }
 | 
|    void SetCodecs(const std::vector<VideoCodec> codecs) { codecs_ = codecs; }
 | 
|  
 | 
| -  bool SetCaptureDevice(const Device* device) {
 | 
| -    in_device_ = (device) ? device->name : "";
 | 
| -    options_changed_ = true;
 | 
| -    return true;
 | 
| -  }
 | 
|    bool SetCapture(bool capture) {
 | 
|      capture_ = capture;
 | 
|      return true;
 | 
| @@ -763,7 +758,6 @@ class FakeVideoEngine : public FakeBaseEngine {
 | 
|   private:
 | 
|    std::vector<FakeVideoMediaChannel*> channels_;
 | 
|    std::vector<VideoCodec> codecs_;
 | 
| -  std::string in_device_;
 | 
|    bool capture_;
 | 
|    VideoOptions options_;
 | 
|  
 | 
| 
 |