// Copyright 2018 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_INTERFACE_H_ #define CHROME_BROWSER_VR_UI_INTERFACE_H_ #include "base/memory/weak_ptr.h" #include "base/time/time.h" #include "chrome/browser/vr/fov_rectangle.h" namespace gfx { class Point3F; class PointF; class Transform; } namespace vr { class BrowserUiInterface; class SchedulerUiInterface; struct RenderInfo; enum class UserFriendlyElementName; // This interface represents the methods that should be called by its owner, and // also serves to make all such methods virtual for the sake of separating a UI // feature module. class UiInterface { … }; } // namespace vr #endif // CHROME_BROWSER_VR_UI_INTERFACE_H_