blob: 117ba0c94564acaa9ef3b5aa081b79f7f1b19cd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// 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_consent_helper.h"
#include "content/public/browser/xr_install_helper.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;
}
std::unique_ptr<XrConsentHelper> XrIntegrationClient::GetConsentHelper(
device::mojom::XRDeviceId device_id) {
return nullptr;
}
#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
|