blob: 2c38417d82ca6c6947ef756ba3a665f8a8945c6c [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/vr/skia_surface_provider_factory.h"
#include "chrome/browser/vr/native_gl_surface_provider.h"
namespace vr {
std::unique_ptr<SkiaSurfaceProvider> SkiaSurfaceProviderFactory::Create() {
return std::make_unique<NativeGlSurfaceProvider>();
}
} // namespace vr