| Index: chrome/browser/android/vr_shell/textures/url_bar_texture.h
|
| diff --git a/chrome/browser/android/vr_shell/textures/url_bar_texture.h b/chrome/browser/android/vr_shell/textures/url_bar_texture.h
|
| index 96e7d44551a2bb03b977fc2b14b33927c212d00b..81630ead6d5444734938978feec9465871978240 100644
|
| --- a/chrome/browser/android/vr_shell/textures/url_bar_texture.h
|
| +++ b/chrome/browser/android/vr_shell/textures/url_bar_texture.h
|
| @@ -20,6 +20,7 @@ class UrlBarTexture : public UiTexture {
|
|
|
| void SetHover(bool hover);
|
| void SetURL(const GURL& gurl);
|
| + void SetSecurityLevel(int level);
|
|
|
| private:
|
| void Draw(SkCanvas* canvas, const gfx::Size& texture_size) override;
|
| @@ -27,6 +28,7 @@ class UrlBarTexture : public UiTexture {
|
|
|
| gfx::SizeF size_;
|
| bool hover_ = false;
|
| + int security_level_;
|
| GURL gurl_;
|
| };
|
|
|
|
|