| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/android/vr_shell/ui_elements/transient_url_bar.h" | 5 #include "chrome/browser/android/vr_shell/ui_elements/transient_url_bar.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "chrome/browser/android/vr_shell/textures/url_bar_texture.h" | 8 #include "chrome/browser/android/vr_shell/textures/url_bar_texture.h" |
| 9 | 9 |
| 10 namespace vr_shell { | 10 namespace vr_shell { |
| 11 | 11 |
| 12 TransientUrlBar::TransientUrlBar( | 12 TransientUrlBar::TransientUrlBar( |
| 13 int id, |
| 13 int preferred_width, | 14 int preferred_width, |
| 14 const base::TimeDelta& timeout, | 15 const base::TimeDelta& timeout, |
| 15 const base::Callback<void(UiUnsupportedMode)>& failure_callback) | 16 const base::Callback<void(UiUnsupportedMode)>& failure_callback) |
| 16 : TexturedElement(preferred_width), | 17 : TexturedElement(id, preferred_width), |
| 17 texture_(base::MakeUnique<UrlBarTexture>(true, failure_callback)), | 18 texture_(base::MakeUnique<UrlBarTexture>(true, failure_callback)), |
| 18 transience_(this, timeout) {} | 19 transience_(this, timeout) {} |
| 19 | 20 |
| 20 TransientUrlBar::~TransientUrlBar() = default; | 21 TransientUrlBar::~TransientUrlBar() = default; |
| 21 | 22 |
| 22 UiTexture* TransientUrlBar::GetTexture() const { | 23 UiTexture* TransientUrlBar::GetTexture() const { |
| 23 return texture_.get(); | 24 return texture_.get(); |
| 24 } | 25 } |
| 25 | 26 |
| 26 void TransientUrlBar::SetEnabled(bool enabled) { | 27 void TransientUrlBar::SetEnabled(bool enabled) { |
| 27 transience_.SetEnabled(enabled); | 28 transience_.SetEnabled(enabled); |
| 28 } | 29 } |
| 29 | 30 |
| 30 void TransientUrlBar::SetToolbarState(const ToolbarState& state) { | 31 void TransientUrlBar::SetToolbarState(const ToolbarState& state) { |
| 31 texture_->SetToolbarState(state); | 32 texture_->SetToolbarState(state); |
| 32 } | 33 } |
| 33 | 34 |
| 34 } // namespace vr_shell | 35 } // namespace vr_shell |
| OLD | NEW |