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

Unified Diff: remoting/host/screen_recorder.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: remoting/host/screen_recorder.cc
diff --git a/remoting/host/screen_recorder.cc b/remoting/host/screen_recorder.cc
index d3f0e4992ed9d6978d1b878f7296863d5c0396a0..0dbc1913250a7f4602e4ce427c12635257a8fe01 100644
--- a/remoting/host/screen_recorder.cc
+++ b/remoting/host/screen_recorder.cc
@@ -181,7 +181,7 @@ void ScreenRecorder::StartCaptureTimer() {
base::TimeDelta interval = base::TimeDelta::FromMilliseconds(
static_cast<int>(base::Time::kMillisecondsPerSecond / max_rate_));
- capture_timer_.Start(interval, this, &ScreenRecorder::DoCapture);
+ capture_timer_.Start(interval, this, &ScreenRecorder::DoCapture, FROM_HERE);
}
void ScreenRecorder::DoCapture() {

Powered by Google App Engine
This is Rietveld 408576698