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

Unified Diff: chrome/browser/android/vr_shell/ui_elements/loading_indicator.cc

Issue 2966793002: NOT FOR REVIEW - convert to cc animation
Patch Set: switch to transform operations Created 3 years, 6 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: chrome/browser/android/vr_shell/ui_elements/loading_indicator.cc
diff --git a/chrome/browser/android/vr_shell/ui_elements/loading_indicator.cc b/chrome/browser/android/vr_shell/ui_elements/loading_indicator.cc
index 7a2add7468f586a439926a18e4fed70b0c34b7cd..211ec34e88a4ce32df19c54ac161d1a735544e6b 100644
--- a/chrome/browser/android/vr_shell/ui_elements/loading_indicator.cc
+++ b/chrome/browser/android/vr_shell/ui_elements/loading_indicator.cc
@@ -14,8 +14,8 @@ namespace {
static constexpr int kVisibilityTimeoutMs = 200;
}
-LoadingIndicator::LoadingIndicator(int preferred_width)
- : TexturedElement(preferred_width),
+LoadingIndicator::LoadingIndicator(int id, int preferred_width)
+ : TexturedElement(id, preferred_width),
texture_(base::MakeUnique<LoadingIndicatorTexture>()) {
set_visible(false);
}

Powered by Google App Engine
This is Rietveld 408576698