| Index: chrome/browser/android/vr_shell/ui_elements/transient_url_bar.cc
|
| diff --git a/chrome/browser/android/vr_shell/ui_elements/transient_url_bar.cc b/chrome/browser/android/vr_shell/ui_elements/transient_url_bar.cc
|
| index 6c960ca66d35f7a7f3797d765aeb26179d5554c4..b6a88190297b1b4646147beedc43616867f3d55b 100644
|
| --- a/chrome/browser/android/vr_shell/ui_elements/transient_url_bar.cc
|
| +++ b/chrome/browser/android/vr_shell/ui_elements/transient_url_bar.cc
|
| @@ -21,15 +21,8 @@ UiTexture* TransientUrlBar::GetTexture() const {
|
| return texture_.get();
|
| }
|
|
|
| -void TransientUrlBar::SetURL(const GURL& gurl) {
|
| - texture_->SetURL(gurl);
|
| - UpdateTexture();
|
| -}
|
| -
|
| -void TransientUrlBar::SetSecurityInfo(security_state::SecurityLevel level,
|
| - bool malware) {
|
| - texture_->SetSecurityInfo(level, malware);
|
| - UpdateTexture();
|
| +void TransientUrlBar::SetToolbarState(const ToolbarState& state) {
|
| + texture_->SetToolbarState(state);
|
| }
|
|
|
| } // namespace vr_shell
|
|
|