Index: chrome/browser/chromeos/setting_level_bubble.cc |
diff --git a/chrome/browser/chromeos/setting_level_bubble.cc b/chrome/browser/chromeos/setting_level_bubble.cc |
index 116c4457e699226ca012ed4efb762a9a1f5dee84..7a35a99ce55607a4f2de6fb19f83650db48fdfe6 100644 |
--- a/chrome/browser/chromeos/setting_level_bubble.cc |
+++ b/chrome/browser/chromeos/setting_level_bubble.cc |
@@ -148,7 +148,8 @@ void SettingLevelBubble::ShowBubble(double percent, bool enabled) { |
view_->SetEnabled(enabled); |
} |
- hide_timer_.Start(base::TimeDelta::FromMilliseconds(kBubbleShowTimeoutMs), |
+ hide_timer_.Start(FROM_HERE, |
+ base::TimeDelta::FromMilliseconds(kBubbleShowTimeoutMs), |
this, &SettingLevelBubble::OnHideTimeout); |
} |
@@ -232,7 +233,8 @@ void SettingLevelBubble::UpdateTargetPercent(double percent) { |
target_time_ = now + TimeDelta::FromMilliseconds(duration_ms); |
if (!is_animating_) { |
- animation_timer_.Start(TimeDelta::FromMilliseconds(kAnimationIntervalMs), |
+ animation_timer_.Start(FROM_HERE, |
+ TimeDelta::FromMilliseconds(kAnimationIntervalMs), |
this, |
&SettingLevelBubble::OnAnimationTimeout); |
is_animating_ = true; |