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

Unified Diff: chrome/browser/ui/views/autofill/autofill_dialog_views.cc

Issue 73723002: [rAc OSX] Animate the dots in the "Loading ..." message. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clean up new files Created 7 years, 1 month 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/autofill/autofill_dialog_views.cc
diff --git a/chrome/browser/ui/views/autofill/autofill_dialog_views.cc b/chrome/browser/ui/views/autofill/autofill_dialog_views.cc
index 65620bfdf844c259b685a99a0886e79d8459bf9d..5a9b4c01c4307206515dcc80017d3a07cec7c956 100644
--- a/chrome/browser/ui/views/autofill/autofill_dialog_views.cc
+++ b/chrome/browser/ui/views/autofill/autofill_dialog_views.cc
@@ -441,7 +441,7 @@ class LoadingAnimationView : public views::View,
for (size_t i = 0; i < 3; ++i) {
views::View* dot = container_->child_at(i + 1);
- dot->SetY(dot->y() + animation_.GetCurrentValueForDot(i) * 10.0);
+ dot->SetY(dot->y() + animation_.GetCurrentValueForDot(i));
}
}

Powered by Google App Engine
This is Rietveld 408576698