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

Unified Diff: ui/base/animation/animation.h

Issue 9443007: Add Chrome To Mobile Service and Views Page Action. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Put shared CloudPrint consts/helpers in chrome/common/; use CloudPrintURL. Created 8 years, 9 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: ui/base/animation/animation.h
diff --git a/ui/base/animation/animation.h b/ui/base/animation/animation.h
index 257e99b438930bc1a3695c14bcf9f1fb4ba1ce28..9675e09a11ba53021b019ce6f3ad24d3117f3a74 100644
--- a/ui/base/animation/animation.h
+++ b/ui/base/animation/animation.h
@@ -58,6 +58,7 @@ class UI_EXPORT Animation : public AnimationContainerElement {
bool is_animating() const { return is_animating_; }
base::TimeDelta timer_interval() const { return timer_interval_; }
+ void set_timer_interval(base::TimeDelta time) { timer_interval_ = time; }
// Returns true if rich animations should be rendered.
// Looks at session type (e.g. remote desktop) and accessibility settings
@@ -88,7 +89,7 @@ class UI_EXPORT Animation : public AnimationContainerElement {
private:
// Interval for the animation.
- const base::TimeDelta timer_interval_;
+ base::TimeDelta timer_interval_;
// If true we're running.
bool is_animating_;

Powered by Google App Engine
This is Rietveld 408576698