| Index: chrome/browser/android/vr_shell/ui_scene.h
|
| diff --git a/chrome/browser/android/vr_shell/ui_scene.h b/chrome/browser/android/vr_shell/ui_scene.h
|
| index df949d2ce0f6c9e455f301e4764f8ec623db68f7..12bf9df514d1cdc422edae39bca33c104d16be7d 100644
|
| --- a/chrome/browser/android/vr_shell/ui_scene.h
|
| +++ b/chrome/browser/android/vr_shell/ui_scene.h
|
| @@ -80,8 +80,10 @@ class UiScene {
|
|
|
| bool is_exiting() const { return is_exiting_; }
|
| void set_is_exiting();
|
| - bool is_prompting_to_exit() { return is_prompting_to_exit_; }
|
| + bool is_prompting_to_exit() const { return is_prompting_to_exit_; }
|
| void set_is_prompting_to_exit(bool prompting);
|
| + bool showing_splash_screen() const { return showing_splash_screen_; }
|
| + void set_showing_splash_screen(bool showing);
|
|
|
| void OnGLInitialized();
|
|
|
| @@ -98,6 +100,7 @@ class UiScene {
|
| bool gl_initialized_ = false;
|
| bool is_exiting_ = false;
|
| bool is_prompting_to_exit_ = false;
|
| + bool showing_splash_screen_ = false;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(UiScene);
|
| };
|
|
|