| Index: chrome/browser/android/vr_shell/ui_interface.h
|
| diff --git a/chrome/browser/android/vr_shell/ui_interface.h b/chrome/browser/android/vr_shell/ui_interface.h
|
| index 1a0f0c69da151f54c34ff98c4305e3a86d4b806e..f8904642059f4a82823176e80469a7d07ffa6aec 100644
|
| --- a/chrome/browser/android/vr_shell/ui_interface.h
|
| +++ b/chrome/browser/android/vr_shell/ui_interface.h
|
| @@ -8,6 +8,7 @@
|
| #include "components/security_state/core/security_state.h"
|
|
|
| class GURL;
|
| +class SkBitmap;
|
|
|
| namespace vr_shell {
|
|
|
| @@ -25,9 +26,7 @@ class UiInterface {
|
|
|
| virtual ~UiInterface() {}
|
|
|
| - virtual void SetWebVrMode(bool enabled,
|
| - bool auto_presented,
|
| - bool show_toast) = 0;
|
| + virtual void SetWebVrMode(bool enabled, bool show_toast) = 0;
|
| virtual void SetURL(const GURL& url) = 0;
|
| virtual void SetFullscreen(bool enabled) = 0;
|
| virtual void SetSecurityInfo(security_state::SecurityLevel level,
|
| @@ -42,6 +41,7 @@ class UiInterface {
|
| virtual void SetVideoCapturingIndicator(bool enabled) = 0;
|
| virtual void SetScreenCapturingIndicator(bool enabled) = 0;
|
| virtual void SetAudioCapturingIndicator(bool enabled) = 0;
|
| + virtual void SetSplashScreenIcon(const SkBitmap& bitmap) = 0;
|
|
|
| // Tab handling.
|
| virtual void InitTabList() {}
|
|
|