Title: [277254] trunk/Source/WebCore
Revision
277254
Author
[email protected]
Date
2021-05-09 17:26:01 -0700 (Sun, 09 May 2021)

Log Message

[WebXR] Remove reference cycle in WebXRSession
https://bugs.webkit.org/show_bug.cgi?id=225025
<rdar://problem/77111217>

Unreviewed WPE build fix.

* Modules/webxr/WebXRInputSourceArray.h: Add missing namespace.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (277253 => 277254)


--- trunk/Source/WebCore/ChangeLog	2021-05-09 21:21:28 UTC (rev 277253)
+++ trunk/Source/WebCore/ChangeLog	2021-05-10 00:26:01 UTC (rev 277254)
@@ -1,3 +1,13 @@
+2021-05-09  Lauro Moura  <[email protected]>
+
+        [WebXR] Remove reference cycle in WebXRSession
+        https://bugs.webkit.org/show_bug.cgi?id=225025
+        <rdar://problem/77111217>
+
+        Unreviewed WPE build fix.
+
+        * Modules/webxr/WebXRInputSourceArray.h: Add missing namespace.
+
 2021-05-09  Fujii Hironori  <[email protected]>
 
         [WinCairo][Clang] lld-link: error: undefined symbol: public: static class GenericTypedArrayView<>::tryCreate() in CryptoKeyRSAOpenSSL.cpp

Modified: trunk/Source/WebCore/Modules/webxr/WebXRInputSourceArray.h (277253 => 277254)


--- trunk/Source/WebCore/Modules/webxr/WebXRInputSourceArray.h	2021-05-09 21:21:28 UTC (rev 277253)
+++ trunk/Source/WebCore/Modules/webxr/WebXRInputSourceArray.h	2021-05-10 00:26:01 UTC (rev 277254)
@@ -43,7 +43,7 @@
 
 class WebXRInputSourceArray final : public ScriptWrappable {
     WTF_MAKE_ISO_ALLOCATED(WebXRInputSourceArray);
-    friend UniqueRef<WebXRInputSourceArray> WTF::makeUniqueRefWithoutFastMallocCheck<WebXRInputSourceArray, WebXRSession&>(WebXRSession&);
+    friend UniqueRef<WebXRInputSourceArray> WTF::makeUniqueRefWithoutFastMallocCheck<WebXRInputSourceArray, WebCore::WebXRSession&>(WebCore::WebXRSession&);
 public:
     using InputSourceList = Vector<PlatformXR::Device::FrameData::InputSource>;
     static UniqueRef<WebXRInputSourceArray> create(WebXRSession&);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to