Title: [244048] trunk/Source/WebKit
- Revision
- 244048
- Author
- [email protected]
- Date
- 2019-04-08 14:42:47 -0700 (Mon, 08 Apr 2019)
Log Message
Fix selector name after r243834
https://bugs.webkit.org/show_bug.cgi?id=196549
* NetworkProcess/cocoa/NetworkSessionCocoa.mm:
(WebKit::NetworkSessionCocoa::NetworkSessionCocoa):
I forgot the colon in the setter's name.
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (244047 => 244048)
--- trunk/Source/WebKit/ChangeLog 2019-04-08 21:41:49 UTC (rev 244047)
+++ trunk/Source/WebKit/ChangeLog 2019-04-08 21:42:47 UTC (rev 244048)
@@ -1,3 +1,12 @@
+2019-04-08 Alex Christensen <[email protected]>
+
+ Fix selector name after r243834
+ https://bugs.webkit.org/show_bug.cgi?id=196549
+
+ * NetworkProcess/cocoa/NetworkSessionCocoa.mm:
+ (WebKit::NetworkSessionCocoa::NetworkSessionCocoa):
+ I forgot the colon in the setter's name.
+
2019-04-08 Antti Koivisto <[email protected]>
Compute touch actions for touch point from remote layer tree regions
Modified: trunk/Source/WebKit/NetworkProcess/cocoa/NetworkSessionCocoa.mm (244047 => 244048)
--- trunk/Source/WebKit/NetworkProcess/cocoa/NetworkSessionCocoa.mm 2019-04-08 21:41:49 UTC (rev 244047)
+++ trunk/Source/WebKit/NetworkProcess/cocoa/NetworkSessionCocoa.mm 2019-04-08 21:42:47 UTC (rev 244048)
@@ -947,7 +947,7 @@
configuration._companionProxyPreference = NSURLSessionCompanionProxyPreferencePreferDirectToCloud;
#endif
- static SEL allowsTLSFallbackSetter = NSSelectorFromString(@"set_allowsTLSFallback");
+ static SEL allowsTLSFallbackSetter = NSSelectorFromString(@"set_allowsTLSFallback:");
if (parameters.allowsTLSFallback == AllowsTLSFallback::No && [configuration respondsToSelector:allowsTLSFallbackSetter])
wtfObjCMsgSend<void>(configuration, allowsTLSFallbackSetter, NO);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes