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

Unified Diff: chrome/browser/ui/views/frame/browser_view.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: chrome/browser/ui/views/frame/browser_view.cc
diff --git a/chrome/browser/ui/views/frame/browser_view.cc b/chrome/browser/ui/views/frame/browser_view.cc
index d2460053deee6ef4c00ed03a0befaac0ab5fdc96..528280e8d68b513c0a00fa96a7dc1574e94b5523 100644
--- a/chrome/browser/ui/views/frame/browser_view.cc
+++ b/chrome/browser/ui/views/frame/browser_view.cc
@@ -761,7 +761,7 @@ void BrowserView::UpdateLoadingAnimations(bool should_animate) {
last_animation_time_ = base::TimeTicks::Now();
loading_animation_timer_.Start(
TimeDelta::FromMilliseconds(kLoadingAnimationFrameTimeMs), this,
- &BrowserView::LoadingAnimationCallback);
+ &BrowserView::LoadingAnimationCallback, FROM_HERE);
}
} else {
if (loading_animation_timer_.IsRunning()) {

Powered by Google App Engine
This is Rietveld 408576698