Index: remoting/host/ipc_audio_capturer.cc |
diff --git a/remoting/host/ipc_audio_capturer.cc b/remoting/host/ipc_audio_capturer.cc |
index eb571a224dd503ced8db79f8de9560063ac804d9..5bc568d913e77c624ff35456e97b22cc80e8721b 100644 |
--- a/remoting/host/ipc_audio_capturer.cc |
+++ b/remoting/host/ipc_audio_capturer.cc |
@@ -27,15 +27,6 @@ bool IpcAudioCapturer::Start(const PacketCapturedCallback& callback) { |
return true; |
} |
-void IpcAudioCapturer::Stop() { |
- callback_.Reset(); |
- weak_factory_.InvalidateWeakPtrs(); |
-} |
- |
-bool IpcAudioCapturer::IsStarted() { |
- return !callback_.is_null(); |
-} |
- |
void IpcAudioCapturer::OnAudioPacket(scoped_ptr<AudioPacket> packet) { |
callback_.Run(packet.Pass()); |
} |