Title: [253841] trunk/Source/WebKit
Revision
253841
Author
bb...@apple.com
Date
2019-12-20 13:36:24 -0800 (Fri, 20 Dec 2019)

Log Message

Unreviewed, try to fix the non-unified sources build.

* UIProcess/WebAuthentication/Mock/MockAuthenticatorManager.cpp:
(WebKit::MockAuthenticatorManager::filterTransports const):
The current chunking of unified source files seems to provide a
'using namespace WebCore' for these references to AuthenticatorTransport.
Add a namespace qualification so that this file compiles by itself.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (253840 => 253841)


--- trunk/Source/WebKit/ChangeLog	2019-12-20 21:03:26 UTC (rev 253840)
+++ trunk/Source/WebKit/ChangeLog	2019-12-20 21:36:24 UTC (rev 253841)
@@ -1,3 +1,13 @@
+2019-12-20  Brian Burg  <bb...@apple.com>
+
+        Unreviewed, try to fix the non-unified sources build.
+
+        * UIProcess/WebAuthentication/Mock/MockAuthenticatorManager.cpp:
+        (WebKit::MockAuthenticatorManager::filterTransports const):
+        The current chunking of unified source files seems to provide a
+        'using namespace WebCore' for these references to AuthenticatorTransport.
+        Add a namespace qualification so that this file compiles by itself.
+
 2019-12-20  James Savage  <james.sav...@apple.com>
 
         Include WKPDFConfiguration, WKFindConfiguration, and WKFindResult in umbrella header

Modified: trunk/Source/WebKit/UIProcess/WebAuthentication/Mock/MockAuthenticatorManager.cpp (253840 => 253841)


--- trunk/Source/WebKit/UIProcess/WebAuthentication/Mock/MockAuthenticatorManager.cpp	2019-12-20 21:03:26 UTC (rev 253840)
+++ trunk/Source/WebKit/UIProcess/WebAuthentication/Mock/MockAuthenticatorManager.cpp	2019-12-20 21:36:24 UTC (rev 253841)
@@ -53,9 +53,9 @@
 void MockAuthenticatorManager::filterTransports(TransportSet& transports) const
 {
     if (!m_testConfiguration.nfc)
-        transports.remove(AuthenticatorTransport::Nfc);
+        transports.remove(WebCore::AuthenticatorTransport::Nfc);
     if (!m_testConfiguration.local)
-        transports.remove(AuthenticatorTransport::Internal);
+        transports.remove(WebCore::AuthenticatorTransport::Internal);
 }
 
 } // namespace WebKit
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to