| 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 9d3348049c8ec4fbc2cde26ca13e0b72e5ae637e..91b0c3ba20a61b8707e937d0e7fddd7adb71c714 100644
|
| --- a/chrome/browser/android/vr_shell/ui_scene.h
|
| +++ b/chrome/browser/android/vr_shell/ui_scene.h
|
| @@ -9,7 +9,7 @@
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| -#include "chrome/browser/android/vr_shell/vr_math.h"
|
| +#include "device/vr/vr_types.h"
|
|
|
| namespace base {
|
| class DictionaryValue;
|
| @@ -73,7 +73,7 @@ class UiScene {
|
| std::vector<const ContentRectangle*> GetHeadLockedElements() const;
|
| bool HasVisibleHeadLockedElements() const;
|
|
|
| - const Colorf& GetBackgroundColor() const;
|
| + const vr::Colorf& GetBackgroundColor() const;
|
| float GetBackgroundDistance() const;
|
| bool GetWebVrRenderingEnabled() const;
|
|
|
| @@ -84,7 +84,7 @@ class UiScene {
|
|
|
| std::vector<std::unique_ptr<ContentRectangle>> ui_elements_;
|
| ContentRectangle* content_element_ = nullptr;
|
| - Colorf background_color_ = {0.1f, 0.1f, 0.1f, 1.0f};
|
| + vr::Colorf background_color_ = {0.1f, 0.1f, 0.1f, 1.0f};
|
| float background_distance_ = 10.0f;
|
| bool webvr_rendering_enabled_ = true;
|
|
|
|
|