summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/xr/xr_hit_test_source.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/xr/xr_hit_test_source.h')
-rw-r--r--chromium/third_party/blink/renderer/modules/xr/xr_hit_test_source.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/chromium/third_party/blink/renderer/modules/xr/xr_hit_test_source.h b/chromium/third_party/blink/renderer/modules/xr/xr_hit_test_source.h
index 419ee803009..672909b3add 100644
--- a/chromium/third_party/blink/renderer/modules/xr/xr_hit_test_source.h
+++ b/chromium/third_party/blink/renderer/modules/xr/xr_hit_test_source.h
@@ -10,7 +10,6 @@
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
#include "device/vr/public/mojom/vr_service.mojom-blink-forward.h"
-#include "third_party/blink/renderer/platform/transforms/transformation_matrix.h"
namespace blink {
@@ -35,13 +34,13 @@ class XRHitTestSource : public ScriptWrappable {
void Update(
const Vector<device::mojom::blink::XRHitResultPtr>& hit_test_results);
- void Trace(blink::Visitor*) override;
+ void Trace(Visitor*) override;
private:
const uint64_t id_;
Member<XRSession> xr_session_;
- Vector<std::unique_ptr<TransformationMatrix>> last_frame_results_;
+ Vector<device::mojom::blink::XRHitResult> last_frame_results_;
};
} // namespace blink