// Copyright 2017 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_SKIA_SURFACE_PROVIDER_H_ #define CHROME_BROWSER_VR_SKIA_SURFACE_PROVIDER_H_ #include "base/functional/function_ref.h" #include "device/vr/gl_bindings.h" #include "third_party/skia/include/core/SkRefCnt.h" #include "third_party/skia/include/gpu/GrDirectContext.h" class SkSurface; class SkCanvas; namespace gfx { class Size; } // namespace gfx namespace vr { // Provides a Skia surface to draw textures of UI elements into. class SkiaSurfaceProvider { … }; } // namespace vr #endif // CHROME_BROWSER_VR_SKIA_SURFACE_PROVIDER_H_