| 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 05d294bb66d1bae508fa5943b6bf45912e88c823..2972dfd36e87c247df2664ecb98598b3a4ae9ddb 100644
|
| --- a/chrome/browser/android/vr_shell/ui_interface.h
|
| +++ b/chrome/browser/android/vr_shell/ui_interface.h
|
| @@ -24,12 +24,14 @@ class UiInterface {
|
| enum Mode {
|
| STANDARD,
|
| WEB_VR,
|
| + MENU,
|
| };
|
|
|
| UiInterface();
|
| virtual ~UiInterface();
|
|
|
| void SetMode(Mode mode);
|
| + Mode GetMode() { return mode_; }
|
| void SetSecureOrigin(bool secure);
|
| void SetLoading(bool loading);
|
| void SetURL(const GURL& url);
|
| @@ -41,6 +43,7 @@ class UiInterface {
|
| private:
|
| void FlushUpdates();
|
|
|
| + Mode mode_;
|
| UiCommandHandler* handler_;
|
| bool loaded_ = false;
|
| base::DictionaryValue updates_;
|
|
|