blob: 14a743401978a73795f25d22956d527dbfe4adc6 [file] [log] [blame]
// Copyright 2020 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 "content/public/browser/xr_integration_client.h"
#include "content/public/browser/xr_install_helper.h"
#include "device/vr/public/cpp/vr_device_provider.h"
#include "device/vr/public/mojom/vr_service.mojom-shared.h"
namespace content {
std::unique_ptr<XrInstallHelper> XrIntegrationClient::GetInstallHelper(
device::mojom::XRDeviceId device_id) {
return nullptr;
}
XRProviderList XrIntegrationClient::GetAdditionalProviders() {
return {};
}
#if !defined(OS_ANDROID)
std::unique_ptr<VrUiHost> XrIntegrationClient::CreateVrUiHost(
device::mojom::XRDeviceId device_id,
mojo::PendingRemote<device::mojom::XRCompositorHost> compositor) {
return nullptr;
}
#endif
} // namespace content