Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Unified Diff: media/audio/audio_input_controller.cc

Issue 7812036: Update base/timer.h code to pass through Location from call sites. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/audio/audio_input_controller.cc
diff --git a/media/audio/audio_input_controller.cc b/media/audio/audio_input_controller.cc
index da957e6caca811ee8b8181f78e0e16ffc3cdd964..62936bfe79874b2a0be4a885b59ed0e698184c7c 100644
--- a/media/audio/audio_input_controller.cc
+++ b/media/audio/audio_input_controller.cc
@@ -24,7 +24,8 @@ AudioInputController::AudioInputController(EventHandler* handler,
ALLOW_THIS_IN_INITIALIZER_LIST(no_data_timer_(
base::TimeDelta::FromSeconds(kTimerResetInterval),
this,
- &AudioInputController::DoReportNoDataError)),
+ &AudioInputController::DoReportNoDataError,
+ FROM_HERE)),
state_(kEmpty),
thread_("AudioInputControllerThread"),
sync_writer_(sync_writer) {

Powered by Google App Engine
This is Rietveld 408576698