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