Title: [235407] trunk/Source/WebKit
Revision
235407
Author
[email protected]
Date
2018-08-27 16:29:42 -0700 (Mon, 27 Aug 2018)

Log Message

Fix plug-ins after r235398
https://bugs.webkit.org/show_bug.cgi?id=188997

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::findPlugin):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (235406 => 235407)


--- trunk/Source/WebKit/ChangeLog	2018-08-27 22:25:26 UTC (rev 235406)
+++ trunk/Source/WebKit/ChangeLog	2018-08-27 23:29:42 UTC (rev 235407)
@@ -1,3 +1,11 @@
+2018-08-27  Alex Christensen  <[email protected]>
+
+        Fix plug-ins after r235398
+        https://bugs.webkit.org/show_bug.cgi?id=188997
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::findPlugin):
+
 2018-08-27  Aditya Keerthi  <[email protected]>
 
         Consolidate ENABLE_INPUT_TYPE_COLOR and ENABLE_INPUT_TYPE_COLOR_POPOVER

Modified: trunk/Source/WebKit/UIProcess/WebPageProxy.cpp (235406 => 235407)


--- trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2018-08-27 22:25:26 UTC (rev 235406)
+++ trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2018-08-27 23:29:42 UTC (rev 235407)
@@ -2193,8 +2193,10 @@
     };
 
 #if PLATFORM(COCOA)
-    if (m_navigationClient)
+    if (m_navigationClient) {
         m_navigationClient->decidePolicyForPluginLoad(*this, static_cast<PluginModuleLoadPolicy>(pluginLoadPolicy), pluginInformation.get(), WTFMove(findPluginCompletion));
+        return;
+    }
 #endif
     findPluginCompletion(pluginLoadPolicy, { });
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to