Title: [236334] branches/safari-606-branch/Source/WebKit
Revision
236334
Author
[email protected]
Date
2018-09-21 10:55:08 -0700 (Fri, 21 Sep 2018)

Log Message

Cherry-pick r236291. rdar://problem/44660342

    Allow additional plug-ins to run unsandboxed
    https://bugs.webkit.org/show_bug.cgi?id=189791
    <rdar://problem/44628127>

    Reviewed by Brent Fulgham.

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

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@236291 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-606-branch/Source/WebKit/ChangeLog (236333 => 236334)


--- branches/safari-606-branch/Source/WebKit/ChangeLog	2018-09-21 17:48:34 UTC (rev 236333)
+++ branches/safari-606-branch/Source/WebKit/ChangeLog	2018-09-21 17:55:08 UTC (rev 236334)
@@ -1,3 +1,30 @@
+2018-09-21  Kocsen Chung  <[email protected]>
+
+        Cherry-pick r236291. rdar://problem/44660342
+
+    Allow additional plug-ins to run unsandboxed
+    https://bugs.webkit.org/show_bug.cgi?id=189791
+    <rdar://problem/44628127>
+    
+    Reviewed by Brent Fulgham.
+    
+    * UIProcess/Plugins/mac/PluginInfoStoreMac.mm:
+    (WebKit::PluginInfoStore::shouldAllowPluginToRunUnsandboxed):
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@236291 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2018-09-20  Youenn Fablet  <[email protected]>
+
+            Allow additional plug-ins to run unsandboxed
+            https://bugs.webkit.org/show_bug.cgi?id=189791
+            <rdar://problem/44628127>
+
+            Reviewed by Brent Fulgham.
+
+            * UIProcess/Plugins/mac/PluginInfoStoreMac.mm:
+            (WebKit::PluginInfoStore::shouldAllowPluginToRunUnsandboxed):
+
 2018-09-19  Kocsen Chung  <[email protected]>
 
         Cherry-pick r235752. rdar://problem/44576797

Modified: branches/safari-606-branch/Source/WebKit/UIProcess/Plugins/mac/PluginInfoStoreMac.mm (236333 => 236334)


--- branches/safari-606-branch/Source/WebKit/UIProcess/Plugins/mac/PluginInfoStoreMac.mm	2018-09-21 17:48:34 UTC (rev 236333)
+++ branches/safari-606-branch/Source/WebKit/UIProcess/Plugins/mac/PluginInfoStoreMac.mm	2018-09-21 17:55:08 UTC (rev 236334)
@@ -94,7 +94,15 @@
         || pluginBundleIdentifier == "com.google.o1dbrowserplugin"_s
         || pluginBundleIdentifier == "com.apple.NPSafeInput"_s
         || pluginBundleIdentifier == "com.apple.BocomSubmitCtrl"_s
-        || pluginBundleIdentifier == "com.ftsafe.NPAPI-Core-Safe-SoftKeybaord.plugin.rfc1034identifier"_s;
+        || pluginBundleIdentifier == "com.ftsafe.NPAPI-Core-Safe-SoftKeybaord.plugin.rfc1034identifier"_s
+        || pluginBundleIdentifier == "com.cfca.npSecEditCtl.MAC.BOC.plugin"_s
+        || pluginBundleIdentifier == "cfca.com.npCryptoKit.MAC.BOC"_s
+        || pluginBundleIdentifier == "cfca.com.npP11CertEnroll.MAC.BOC"_s
+        || pluginBundleIdentifier == "cfca.com.npCryptoKit.UnionPay.MAC"_s
+        || 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;
 }
 
 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