Title: [248698] trunk/Source/WebKit
Revision
248698
Author
aes...@apple.com
Date
2019-08-14 17:18:27 -0700 (Wed, 14 Aug 2019)

Log Message

Fix the build when ENABLE(APPLE_PAY) is false.

* Shared/Cocoa/WebCoreArgumentCodersCocoa.mm:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (248697 => 248698)


--- trunk/Source/WebKit/ChangeLog	2019-08-15 00:17:55 UTC (rev 248697)
+++ trunk/Source/WebKit/ChangeLog	2019-08-15 00:18:27 UTC (rev 248698)
@@ -1,3 +1,9 @@
+2019-08-14  Andy Estes  <aes...@apple.com>
+
+        Fix the build when ENABLE(APPLE_PAY) is false.
+
+        * Shared/Cocoa/WebCoreArgumentCodersCocoa.mm:
+
 2019-08-14  Keith Rollin  <krol...@apple.com>
 
         Remove support for macOS < 10.13

Modified: trunk/Source/WebKit/Shared/Cocoa/WebCoreArgumentCodersCocoa.mm (248697 => 248698)


--- trunk/Source/WebKit/Shared/Cocoa/WebCoreArgumentCodersCocoa.mm	2019-08-15 00:17:55 UTC (rev 248697)
+++ trunk/Source/WebKit/Shared/Cocoa/WebCoreArgumentCodersCocoa.mm	2019-08-15 00:18:27 UTC (rev 248698)
@@ -43,7 +43,7 @@
 
 #if USE(APPLE_INTERNAL_SDK)
 #import <WebKitAdditions/WebCoreArgumentCodersCocoaAdditions.mm>
-#else
+#elif ENABLE(APPLE_PAY)
 namespace IPC {
 static bool finishDecoding(Decoder&, WebCore::ApplePaySessionPaymentRequest&) { return true; }
 static void finishEncoding(Encoder&, const WebCore::ApplePaySessionPaymentRequest&) { }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to