// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_VR_UI_SCENE_H_ #define CHROME_BROWSER_VR_UI_SCENE_H_ #include <memory> #include <vector> #include "base/memory/raw_ptr.h" #include "chrome/browser/vr/elements/ui_element.h" #include "chrome/browser/vr/elements/ui_element_name.h" #include "chrome/browser/vr/vr_ui_export.h" #include "third_party/skia/include/core/SkColor.h" namespace base { class TimeTicks; } // namespace base namespace gfx { class Transform; } // namespace gfx namespace vr { class UiElement; class VR_UI_EXPORT UiScene { … }; } // namespace vr #endif // CHROME_BROWSER_VR_UI_SCENE_H_