Title: [231103] trunk/Source/WebKit
Revision
231103
Author
[email protected]
Date
2018-04-27 10:20:36 -0700 (Fri, 27 Apr 2018)

Log Message

UIDelegate::UIClient::didResignInputElementStrongPasswordAppearance() is applicable to both Mac and iOS
https://bugs.webkit.org/show_bug.cgi?id=185079
<rdar://problem/39794960>

I inadvertently forgot to move the UIDelegate field webViewDidResignInputElementStrongPasswordAppearanceWithUserInfo
outside the PLATFORM(MAC)-guard.

* UIProcess/Cocoa/UIDelegate.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (231102 => 231103)


--- trunk/Source/WebKit/ChangeLog	2018-04-27 17:11:59 UTC (rev 231102)
+++ trunk/Source/WebKit/ChangeLog	2018-04-27 17:20:36 UTC (rev 231103)
@@ -4,6 +4,17 @@
         https://bugs.webkit.org/show_bug.cgi?id=185079
         <rdar://problem/39794960>
 
+        I inadvertently forgot to move the UIDelegate field webViewDidResignInputElementStrongPasswordAppearanceWithUserInfo
+        outside the PLATFORM(MAC)-guard.
+
+        * UIProcess/Cocoa/UIDelegate.h:
+
+2018-04-27  Daniel Bates  <[email protected]>
+
+        UIDelegate::UIClient::didResignInputElementStrongPasswordAppearance() is applicable to both Mac and iOS
+        https://bugs.webkit.org/show_bug.cgi?id=185079
+        <rdar://problem/39794960>
+
         Reviewed by Andy Estes.
 
         * UIProcess/Cocoa/UIDelegate.h:

Modified: trunk/Source/WebKit/UIProcess/Cocoa/UIDelegate.h (231102 => 231103)


--- trunk/Source/WebKit/UIProcess/Cocoa/UIDelegate.h	2018-04-27 17:11:59 UTC (rev 231102)
+++ trunk/Source/WebKit/UIProcess/Cocoa/UIDelegate.h	2018-04-27 17:20:36 UTC (rev 231103)
@@ -158,6 +158,7 @@
         bool webViewRunJavaScriptTextInputPanelWithPromptDefaultTextInitiatedByFrameCompletionHandler : 1;
         bool webViewRunBeforeUnloadConfirmPanelWithMessageInitiatedByFrameCompletionHandler : 1;
         bool webViewRequestGeolocationPermissionForFrameDecisionHandler : 1;
+        bool webViewDidResignInputElementStrongPasswordAppearanceWithUserInfo : 1;
 #if PLATFORM(MAC)
         bool showWebView : 1;
         bool focusWebView : 1;
@@ -173,7 +174,6 @@
         bool webViewHandleAutoplayEventWithFlags : 1;
         bool webViewUnavailablePlugInButtonClicked : 1;
         bool webViewDidClickAutoFillButtonWithUserInfo : 1;
-        bool webViewDidResignInputElementStrongPasswordAppearanceWithUserInfo : 1;
         bool webViewDrawHeaderInRectForPageWithTitleURL : 1;
         bool webViewDrawFooterInRectForPageWithTitleURL : 1;
         bool webViewGetWindowFrameWithCompletionHandler : 1;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to