| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_ANDROID_VR_SHELL_UI_SCENE_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_VR_SHELL_UI_SCENE_MANAGER_H_ |
| 6 #define CHROME_BROWSER_ANDROID_VR_SHELL_UI_SCENE_MANAGER_H_ | 6 #define CHROME_BROWSER_ANDROID_VR_SHELL_UI_SCENE_MANAGER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "base/timer/timer.h" | 10 #include "base/timer/timer.h" |
| 11 #include "base/values.h" | 11 #include "base/values.h" |
| 12 #include "chrome/browser/android/vr_shell/color_scheme.h" | 12 #include "chrome/browser/android/vr_shell/color_scheme.h" |
| 13 #include "chrome/browser/android/vr_shell/ui_interface.h" | 13 #include "chrome/browser/android/vr_shell/ui_interface.h" |
| 14 #include "chrome/browser/android/vr_shell/ui_unsupported_mode.h" | 14 #include "chrome/browser/android/vr_shell/ui_unsupported_mode.h" |
| 15 #include "device/vr/vr_types.h" | 15 #include "device/vr/vr_types.h" |
| 16 | 16 |
| 17 namespace vr_shell { | 17 namespace vr_shell { |
| 18 | 18 |
| 19 class LoadingIndicator; | 19 class LoadingIndicator; |
| 20 class UiBrowserInterface; |
| 20 class UiElement; | 21 class UiElement; |
| 21 class UiScene; | 22 class UiScene; |
| 22 class UrlBar; | 23 class UrlBar; |
| 23 class VrBrowserInterface; | |
| 24 | 24 |
| 25 class UiSceneManager { | 25 class UiSceneManager { |
| 26 public: | 26 public: |
| 27 UiSceneManager(VrBrowserInterface* browser, | 27 UiSceneManager(UiBrowserInterface* browser, |
| 28 UiScene* scene, | 28 UiScene* scene, |
| 29 bool in_cct, | 29 bool in_cct, |
| 30 bool in_web_vr); | 30 bool in_web_vr); |
| 31 ~UiSceneManager(); | 31 ~UiSceneManager(); |
| 32 | 32 |
| 33 base::WeakPtr<UiSceneManager> GetWeakPtr(); | 33 base::WeakPtr<UiSceneManager> GetWeakPtr(); |
| 34 | 34 |
| 35 void SetFullscreen(bool fullscreen); | 35 void SetFullscreen(bool fullscreen); |
| 36 void SetIncognito(bool incognito); | 36 void SetIncognito(bool incognito); |
| 37 void SetURL(const GURL& gurl); | 37 void SetURL(const GURL& gurl); |
| (...skipping 27 matching lines...) Expand all Loading... |
| 65 void ConfigureSecurityWarnings(); | 65 void ConfigureSecurityWarnings(); |
| 66 void UpdateBackgroundColor(); | 66 void UpdateBackgroundColor(); |
| 67 void OnSecurityWarningTimer(); | 67 void OnSecurityWarningTimer(); |
| 68 void OnBackButtonClicked(); | 68 void OnBackButtonClicked(); |
| 69 void OnCloseButtonClicked(); | 69 void OnCloseButtonClicked(); |
| 70 void OnUnsupportedMode(UiUnsupportedMode mode); | 70 void OnUnsupportedMode(UiUnsupportedMode mode); |
| 71 int AllocateId(); | 71 int AllocateId(); |
| 72 ColorScheme::Mode mode() const; | 72 ColorScheme::Mode mode() const; |
| 73 const ColorScheme& color_scheme() const; | 73 const ColorScheme& color_scheme() const; |
| 74 | 74 |
| 75 VrBrowserInterface* browser_; | 75 UiBrowserInterface* browser_; |
| 76 UiScene* scene_; | 76 UiScene* scene_; |
| 77 | 77 |
| 78 // UI element pointers (not owned by the scene manager). | 78 // UI element pointers (not owned by the scene manager). |
| 79 UiElement* permanent_security_warning_ = nullptr; | 79 UiElement* permanent_security_warning_ = nullptr; |
| 80 UiElement* transient_security_warning_ = nullptr; | 80 UiElement* transient_security_warning_ = nullptr; |
| 81 UiElement* exit_warning_ = nullptr; | 81 UiElement* exit_warning_ = nullptr; |
| 82 UiElement* main_content_ = nullptr; | 82 UiElement* main_content_ = nullptr; |
| 83 UiElement* audio_capture_indicator_ = nullptr; | 83 UiElement* audio_capture_indicator_ = nullptr; |
| 84 UiElement* video_capture_indicator_ = nullptr; | 84 UiElement* video_capture_indicator_ = nullptr; |
| 85 UiElement* screen_capture_indicator_ = nullptr; | 85 UiElement* screen_capture_indicator_ = nullptr; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 107 base::OneShotTimer security_warning_timer_; | 107 base::OneShotTimer security_warning_timer_; |
| 108 | 108 |
| 109 base::WeakPtrFactory<UiSceneManager> weak_ptr_factory_; | 109 base::WeakPtrFactory<UiSceneManager> weak_ptr_factory_; |
| 110 | 110 |
| 111 DISALLOW_COPY_AND_ASSIGN(UiSceneManager); | 111 DISALLOW_COPY_AND_ASSIGN(UiSceneManager); |
| 112 }; | 112 }; |
| 113 | 113 |
| 114 } // namespace vr_shell | 114 } // namespace vr_shell |
| 115 | 115 |
| 116 #endif // CHROME_BROWSER_ANDROID_VR_SHELL_UI_SCENE_MANAGER_H_ | 116 #endif // CHROME_BROWSER_ANDROID_VR_SHELL_UI_SCENE_MANAGER_H_ |
| OLD | NEW |