| 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 {
|
|
|