Title: [196501] trunk/Source/WebKit2
Revision
196501
Author
ander...@apple.com
Date
2016-02-12 13:39:56 -0800 (Fri, 12 Feb 2016)

Log Message

Remove PowerPC cruft
https://bugs.webkit.org/show_bug.cgi?id=154191

Reviewed by Dan Bernstein.

* Shared/Plugins/Netscape/mac/NetscapePluginModuleMac.mm:
(WebKit::getPluginArchitecture): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (196500 => 196501)


--- trunk/Source/WebKit2/ChangeLog	2016-02-12 21:25:56 UTC (rev 196500)
+++ trunk/Source/WebKit2/ChangeLog	2016-02-12 21:39:56 UTC (rev 196501)
@@ -1,5 +1,15 @@
 2016-02-12  Anders Carlsson  <ander...@apple.com>
 
+        Remove PowerPC cruft
+        https://bugs.webkit.org/show_bug.cgi?id=154191
+
+        Reviewed by Dan Bernstein.
+
+        * Shared/Plugins/Netscape/mac/NetscapePluginModuleMac.mm:
+        (WebKit::getPluginArchitecture): Deleted.
+
+2016-02-12  Anders Carlsson  <ander...@apple.com>
+
         Remove more unneeded process launching code
         https://bugs.webkit.org/show_bug.cgi?id=154190
 

Modified: trunk/Source/WebKit2/Shared/Plugins/Netscape/mac/NetscapePluginModuleMac.mm (196500 => 196501)


--- trunk/Source/WebKit2/Shared/Plugins/Netscape/mac/NetscapePluginModuleMac.mm	2016-02-12 21:25:56 UTC (rev 196500)
+++ trunk/Source/WebKit2/Shared/Plugins/Netscape/mac/NetscapePluginModuleMac.mm	2016-02-12 21:39:56 UTC (rev 196501)
@@ -72,20 +72,6 @@
         plugin.pluginArchitecture = CPU_TYPE_X86;
         return true;
     }
-#elif defined(__ppc64__)
-    // We only support 64-bit PPC plug-ins on 64-bit PPC.
-    if (architectures.contains(kCFBundleExecutableArchitecturePPC64)) {
-        plugin.pluginArchitecture = CPU_TYPE_POWERPC64;
-        return true;
-    }
-#elif defined(__ppc__)
-    // We only support 32-bit PPC plug-ins on 32-bit PPC.
-    if (architectures.contains(kCFBundleExecutableArchitecturePPC)) {
-        plugin.pluginArchitecture = CPU_TYPE_POWERPC;
-        return true;
-    }
-#else
-#error "Unhandled architecture"
 #endif
 
     return false;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to