chromium/components/webxr/android/java/src/org/chromium/components/webxr/ArCompositorDelegateProvider.java

// 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.

package org.chromium.components.webxr;

import org.chromium.content_public.browser.WebContents;

/**
 * Interface used to create instances of ArCompositorDelegates, needed by
 * ArOverlayDelegate to work correctly for WebXR's DOM Overlay.
 */
public interface ArCompositorDelegateProvider {
    ArCompositorDelegate create(WebContents webContents);
}