Index: webrtc/media/base/fakemediaengine.h |
diff --git a/webrtc/media/base/fakemediaengine.h b/webrtc/media/base/fakemediaengine.h |
index f2de5ac6538fc3bc68689bb60b66ff9258b467c2..4f03abd8d3b9128b3ddc52b8fd61c334f4b3a922 100644 |
--- a/webrtc/media/base/fakemediaengine.h |
+++ b/webrtc/media/base/fakemediaengine.h |
@@ -749,11 +749,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; |
@@ -762,7 +757,6 @@ class FakeVideoEngine : public FakeBaseEngine { |
private: |
std::vector<FakeVideoMediaChannel*> channels_; |
std::vector<VideoCodec> codecs_; |
- std::string in_device_; |
bool capture_; |
VideoOptions options_; |