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

Unified Diff: chrome/browser/android/vr_shell/ui_elements/textured_element.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/textured_element.cc
diff --git a/chrome/browser/android/vr_shell/ui_elements/textured_element.cc b/chrome/browser/android/vr_shell/ui_elements/textured_element.cc
index e0a7a168f9546b1038c3694e415be72bc2e78a3c..a0b31d94a4532b58e13e3640a03526815a736cfe 100644
--- a/chrome/browser/android/vr_shell/ui_elements/textured_element.cc
+++ b/chrome/browser/android/vr_shell/ui_elements/textured_element.cc
@@ -13,8 +13,8 @@
namespace vr_shell {
-TexturedElement::TexturedElement(int maximum_width)
- : texture_handle_(-1), maximum_width_(maximum_width) {}
+TexturedElement::TexturedElement(int id, int maximum_width)
+ : UiElement(id), texture_handle_(-1), maximum_width_(maximum_width) {}
TexturedElement::~TexturedElement() = default;

Powered by Google App Engine
This is Rietveld 408576698