| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/android/vr_shell/ui_elements/exclusive_screen_toast.h" |
| 6 |
| 7 #include "chrome/browser/android/vr_shell/textures/ui_texture.h" |
| 8 #include "chrome/browser/android/vr_shell/ui_elements/textured_element.h" |
| 9 |
| 10 namespace vr_shell { |
| 11 |
| 12 ExclusiveScreenToast::ExclusiveScreenToast(int preferred_width) |
| 13 : SimpleTexturedElement(preferred_width) {} |
| 14 |
| 15 ExclusiveScreenToast::~ExclusiveScreenToast() = default; |
| 16 |
| 17 void ExclusiveScreenToast::UpdateElementSize() { |
| 18 // Adjust the width of this element according to the texture. The width is |
| 19 // decided by the length of the text to show. |
| 20 gfx::SizeF drawn_size = GetTexture()->GetDrawnSize(); |
| 21 float width = drawn_size.width() / drawn_size.height() * size().y(); |
| 22 set_size({width, size().y(), 1}); |
| 23 } |
| 24 |
| 25 } // namespace vr_shell |
| OLD | NEW |