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

Unified Diff: ui/base/animation/animation_container.cc

Issue 7825026: Revert "Currently, base/timer.cc calls PostTask with FROM_HERE as the Location, (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
« no previous file with comments | « remoting/host/screen_recorder.cc ('k') | views/controls/menu/menu_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/animation/animation_container.cc
diff --git a/ui/base/animation/animation_container.cc b/ui/base/animation/animation_container.cc
index c82d26b9aa5048ea9cdd69b7b7a389dfdb08eebe..1e316cd26ed760d716e8c59f5decf193fdc75040 100644
--- a/ui/base/animation/animation_container.cc
+++ b/ui/base/animation/animation_container.cc
@@ -85,7 +85,7 @@ void AnimationContainer::SetMinTimerInterval(base::TimeDelta delta) {
// that shouldn't be a problem for uses of Animation/AnimationContainer.
timer_.Stop();
min_timer_interval_ = delta;
- timer_.Start(FROM_HERE, min_timer_interval_, this, &AnimationContainer::Run);
+ timer_.Start(min_timer_interval_, this, &AnimationContainer::Run);
}
TimeDelta AnimationContainer::GetMinInterval() {
« no previous file with comments | « remoting/host/screen_recorder.cc ('k') | views/controls/menu/menu_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698