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

Unified Diff: chrome/browser/android/vr_shell/ui_elements/system_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/system_indicator.cc
diff --git a/chrome/browser/android/vr_shell/ui_elements/system_indicator.cc b/chrome/browser/android/vr_shell/ui_elements/system_indicator.cc
index bc3a53af543fadac5e4b311b01572ede2b6dfb7e..1ced0a046fe0ef01f595f3c87c9e0d520a52759a 100644
--- a/chrome/browser/android/vr_shell/ui_elements/system_indicator.cc
+++ b/chrome/browser/android/vr_shell/ui_elements/system_indicator.cc
@@ -9,11 +9,12 @@
namespace vr_shell {
-SystemIndicator::SystemIndicator(int preferred_width,
+SystemIndicator::SystemIndicator(int id,
+ int preferred_width,
float height_meters,
const gfx::VectorIcon& icon,
int string_id)
- : TexturedElement(preferred_width), height_meters_(height_meters) {
+ : TexturedElement(id, preferred_width), height_meters_(height_meters) {
if (string_id != 0) {
texture_ = base::MakeUnique<SystemIndicatorTexture>(icon, string_id);
} else {

Powered by Google App Engine
This is Rietveld 408576698