summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/xr/navigator_xr.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/xr/navigator_xr.h')
-rw-r--r--chromium/third_party/blink/renderer/modules/xr/navigator_xr.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/chromium/third_party/blink/renderer/modules/xr/navigator_xr.h b/chromium/third_party/blink/renderer/modules/xr/navigator_xr.h
index 89d1e217d67..78342d32497 100644
--- a/chromium/third_party/blink/renderer/modules/xr/navigator_xr.h
+++ b/chromium/third_party/blink/renderer/modules/xr/navigator_xr.h
@@ -13,7 +13,7 @@
namespace blink {
class Document;
-class XR;
+class XRSystem;
class MODULES_EXPORT NavigatorXR final : public GarbageCollected<NavigatorXR>,
public Supplement<Navigator> {
@@ -27,15 +27,15 @@ class MODULES_EXPORT NavigatorXR final : public GarbageCollected<NavigatorXR>,
explicit NavigatorXR(Navigator&);
- static XR* xr(Navigator&);
- XR* xr();
+ static XRSystem* xr(Navigator&);
+ XRSystem* xr();
- void Trace(blink::Visitor*) override;
+ void Trace(Visitor*) override;
private:
Document* GetDocument();
- Member<XR> xr_;
+ Member<XRSystem> xr_;
// Gates metrics collection once per local DOM window frame.
bool did_log_navigator_xr_ = false;