blob: 2c7f2da57af88daf5d53203b8e7f499623c42df4 [file] [log] [blame]
// Copyright 2019 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.
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_XR_XR_HIT_TEST_SOURCE_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_XR_XR_HIT_TEST_SOURCE_H_
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
namespace blink {
class XRHitTestOptions;
class XRHitTestSource : public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
XRHitTestOptions* hitTestOptions() const;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_XR_XR_HIT_TEST_SOURCE_H_