Index: media/audio/audio_input_controller.cc |
diff --git a/media/audio/audio_input_controller.cc b/media/audio/audio_input_controller.cc |
index 6a62b6d73aaa15d1f5a1d65cd111ed6d03ed0e30..70647cdfeb6d66fb4e2308a2d8750e9dadcd5fca 100644 |
--- a/media/audio/audio_input_controller.cc |
+++ b/media/audio/audio_input_controller.cc |
@@ -202,15 +202,12 @@ void AudioInputController::DoCreateForStream( |
DCHECK(!no_data_timer_.get()); |
- // This is a fix for crbug.com/357501. The timer can trigger when closing |
DaleCurtis
2014/04/09 22:16:11
Instead of this, all streams should be paused when
jiayl
2014/04/09 22:24:57
That's reasonable but beyond the scope of this cha
DaleCurtis
2014/04/09 22:34:18
Agreed, but I don't think you should enable the no
jiayl
2014/04/09 22:43:24
Yeah, I should have explained it.
We have to enabl
no longer working on chromium
2014/04/10 09:55:02
I also believe hooking up ShouldDeferStreamStart t
no longer working on chromium
2014/04/10 09:55:02
I hope the current code will just be temporary to
|
- // the lid on Macs, which causes more problems than the timer fixes. |
- // Also, in crbug.com/357569, the goal is to remove usage of this timer |
- // since it was added to solve a crash on Windows that no longer can be |
- // reproduced. |
+ // The timer is enabled for logging purposes. The NO_DATA_ERROR triggered |
+ // from the timer must be ignored by the EventHandler. |
// TODO(henrika): remove usage of timer when it has been verified on Canary |
// that we are safe doing so. Goal is to get rid of |no_data_timer_| and |
- // everything that is tied to it. |
- enable_nodata_timer = false; |
+ // everything that is tied to it. crbug.com/357569. |
+ enable_nodata_timer = true; |
if (enable_nodata_timer) { |
// Create the data timer which will call DoCheckForNoData(). The timer |
@@ -324,7 +321,6 @@ void AudioInputController::DoCheckForNoData() { |
// one second since a data packet was recorded. This can happen if a |
// capture device has been removed or disabled. |
handler_->OnError(this, NO_DATA_ERROR); |
no longer working on chromium
2014/04/10 09:55:02
Tommi, on the output side, Dale added a Media.Audi
|
- return; |
} |
// Mark data as non-active. The flag will be re-enabled in OnData() each |