Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Unified Diff: chrome/browser/android/vr_shell/ui_scene.h

Issue 2955483003: Show splash screen when entering VR from a deep-link (Closed)
Patch Set: fix compile error on bots Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/android/vr_shell/ui_interface.h ('k') | chrome/browser/android/vr_shell/ui_scene.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « chrome/browser/android/vr_shell/ui_interface.h ('k') | chrome/browser/android/vr_shell/ui_scene.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698