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

content / public / test / xr_test_utils.h [blame]

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_PUBLIC_TEST_XR_TEST_UTILS_H_
#define CONTENT_PUBLIC_TEST_XR_TEST_UTILS_H_

#include "base/functional/callback_forward.h"
#include "device/vr/public/mojom/isolated_xr_service.mojom-forward.h"
#include "mojo/public/cpp/bindings/remote.h"

namespace content {

// Allows tests to perform extra initialization steps on any new XR Device
// Service instance before other client code can use it. Any time a new instance
// of the service is started by |GetXRDeviceService()|, this callback (if
// non-null) is invoked.
void SetXRDeviceServiceStartupCallbackForTesting(
    base::RepeatingClosure callback);

// Acquires a remote handle to the sandboxed isolated XR Device Service
// instance, launching a process to host the service if necessary.
// This is really just a wrapper for |GetXRDeviceService| which is only exposed
// internally to content/browser.
const mojo::Remote<device::mojom::XRDeviceService>&
GetXRDeviceServiceForTesting();

}  // namespace content

#endif  // CONTENT_PUBLIC_TEST_XR_TEST_UTILS_H_