Title: [236322] trunk/Source/WebKit
Revision
236322
Author
[email protected]
Date
2018-09-21 09:41:13 -0700 (Fri, 21 Sep 2018)

Log Message

Whitelist two additional plugins
https://bugs.webkit.org/show_bug.cgi?id=189832
<rdar://problem/44628127>

Reviewed by Brent Fulgham.

* UIProcess/Plugins/mac/PluginInfoStoreMac.mm:
(WebKit::PluginInfoStore::shouldAllowPluginToRunUnsandboxed):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (236321 => 236322)


--- trunk/Source/WebKit/ChangeLog	2018-09-21 16:20:05 UTC (rev 236321)
+++ trunk/Source/WebKit/ChangeLog	2018-09-21 16:41:13 UTC (rev 236322)
@@ -1,3 +1,14 @@
+2018-09-21  Youenn Fablet  <[email protected]>
+
+        Whitelist two additional plugins
+        https://bugs.webkit.org/show_bug.cgi?id=189832
+        <rdar://problem/44628127>
+
+        Reviewed by Brent Fulgham.
+
+        * UIProcess/Plugins/mac/PluginInfoStoreMac.mm:
+        (WebKit::PluginInfoStore::shouldAllowPluginToRunUnsandboxed):
+
 2018-09-21  Woodrow Wang  <[email protected]>
 
         Clear persistent storage between tests for resourceLoadStatistics

Modified: trunk/Source/WebKit/UIProcess/Plugins/mac/PluginInfoStoreMac.mm (236321 => 236322)


--- trunk/Source/WebKit/UIProcess/Plugins/mac/PluginInfoStoreMac.mm	2018-09-21 16:20:05 UTC (rev 236321)
+++ trunk/Source/WebKit/UIProcess/Plugins/mac/PluginInfoStoreMac.mm	2018-09-21 16:41:13 UTC (rev 236322)
@@ -95,6 +95,7 @@
         || pluginBundleIdentifier == "com.apple.BocomSubmitCtrl"_s
         || pluginBundleIdentifier == "com.ftsafe.NPAPI-Core-Safe-SoftKeybaord.plugin.rfc1034identifier"_s
         || pluginBundleIdentifier == "com.cfca.npSecEditCtl.MAC.BOC.plugin"_s
+        || pluginBundleIdentifier == "com.cfca.npSecEditCtl.MAC.BOCO"_s
         || pluginBundleIdentifier == "cfca.com.npCryptoKit.MAC.BOC"_s
         || pluginBundleIdentifier == "cfca.com.npP11CertEnroll.MAC.BOC"_s
         || pluginBundleIdentifier == "cfca.com.npCryptoKit.UnionPay.MAC"_s
@@ -101,7 +102,8 @@
         || pluginBundleIdentifier == "cfca.com.npP11CertEnroll.MAC.UnionPay"_s
         || pluginBundleIdentifier == "Bocom.netsignplugin"_s
         || pluginBundleIdentifier == "cfca.com.npP11CertEnroll.MAC.CGB"_s
-        || pluginBundleIdentifier == "cfca.com.npCryptoKit.CGB.MAC"_s;
+        || pluginBundleIdentifier == "cfca.com.npCryptoKit.CGB.MAC"_s
+        || pluginBundleIdentifier == "mw.icbc-safari-MW"_s;
 }
 
 bool PluginInfoStore::shouldUsePlugin(Vector<PluginModuleInfo>& alreadyLoadedPlugins, const PluginModuleInfo& plugin)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to