blob: de4030b9546fc5fe1a147d11e9637cb066c240d4 [file] [log] [blame]
// 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.
#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