| 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 | 12 |
| 13 namespace vr_shell { | 13 namespace vr_shell { |
| 14 | 14 |
| 15 struct UiElement; | 15 struct UiElement; |
| 16 class UiScene; | 16 class UiScene; |
| 17 class VrBrowserInterface; |
| 17 | 18 |
| 18 class UiSceneManager { | 19 class UiSceneManager { |
| 19 public: | 20 public: |
| 20 explicit UiSceneManager(UiScene* scene); | 21 UiSceneManager(const base::WeakPtr<VrBrowserInterface>& browser, |
| 22 UiScene* scene); |
| 21 ~UiSceneManager(); | 23 ~UiSceneManager(); |
| 22 | 24 |
| 23 base::WeakPtr<UiSceneManager> GetWeakPtr(); | 25 base::WeakPtr<UiSceneManager> GetWeakPtr(); |
| 24 | 26 |
| 25 void SetWebVRSecureOrigin(bool secure); | 27 void SetWebVRSecureOrigin(bool secure); |
| 26 void SetWebVRMode(bool web_vr); | 28 void SetWebVRMode(bool web_vr); |
| 27 | 29 |
| 30 void OnAppButtonClicked(); |
| 31 |
| 28 private: | 32 private: |
| 29 void CreateSecurityWarnings(); | 33 void CreateSecurityWarnings(); |
| 30 void CreateContentQuad(); | 34 void CreateContentQuad(); |
| 31 void CreateBackground(); | 35 void CreateBackground(); |
| 32 | 36 |
| 33 void ConfigureSecurityWarnings(); | 37 void ConfigureSecurityWarnings(); |
| 34 void OnSecurityWarningTimer(); | 38 void OnSecurityWarningTimer(); |
| 35 int AllocateId(); | 39 int AllocateId(); |
| 36 | 40 |
| 41 base::WeakPtr<VrBrowserInterface> browser_; |
| 37 UiScene* scene_; | 42 UiScene* scene_; |
| 38 | 43 |
| 39 // UI element pointers (not owned by the scene manager). | 44 // UI element pointers (not owned by the scene manager). |
| 40 UiElement* permanent_security_warning_ = nullptr; | 45 UiElement* permanent_security_warning_ = nullptr; |
| 41 UiElement* transient_security_warning_ = nullptr; | 46 UiElement* transient_security_warning_ = nullptr; |
| 42 UiElement* main_content_ = nullptr; | 47 UiElement* main_content_ = nullptr; |
| 43 | 48 |
| 44 bool web_vr_mode_ = false; | 49 bool web_vr_mode_ = false; |
| 45 bool secure_origin_ = false; | 50 bool secure_origin_ = false; |
| 51 bool content_rendering_enabled_ = false; |
| 46 | 52 |
| 47 int next_available_id_ = 1; | 53 int next_available_id_ = 1; |
| 48 | 54 |
| 49 std::vector<UiElement*> browser_ui_elements_; | 55 std::vector<UiElement*> browser_ui_elements_; |
| 50 | 56 |
| 51 base::OneShotTimer security_warning_timer_; | 57 base::OneShotTimer security_warning_timer_; |
| 52 | 58 |
| 53 base::WeakPtrFactory<UiSceneManager> weak_ptr_factory_; | 59 base::WeakPtrFactory<UiSceneManager> weak_ptr_factory_; |
| 54 | 60 |
| 55 DISALLOW_COPY_AND_ASSIGN(UiSceneManager); | 61 DISALLOW_COPY_AND_ASSIGN(UiSceneManager); |
| 56 }; | 62 }; |
| 57 | 63 |
| 58 } // namespace vr_shell | 64 } // namespace vr_shell |
| 59 | 65 |
| 60 #endif // CHROME_BROWSER_ANDROID_VR_SHELL_UI_SCENE_MANAGER_H_ | 66 #endif // CHROME_BROWSER_ANDROID_VR_SHELL_UI_SCENE_MANAGER_H_ |
| OLD | NEW |