Currently Chromium Developer Tools require Java6 to properly build and run. This has some unfortunate implications on Mac as Java6 is 64-bit only on Mac and thus the only SWT variant is Cocoa64 that is lacking in several departments - i.e. it does not support embedding Mozilla browser, has higher memory requirement, etc.
Attached is a patch that enables the plugins to build and run on Java5. We did some pleriminary changes and found no problems.
Changes in the patch are: 1. Manifests were updated to include Java5 as valid run-time environment. 2. ChromiumIOException was introduced as java.io.IOException does not support ctors with Exception. I opted for introducing a new subclass so there is little changes to application behavior. 3. Handshaker::runnableFeature type was changed to FutureTask from RunnableTask - it was always its actual type. RunnableTask is not available in Java5 and is not a superclass of the FutureTask.
- Chrome-Java5-Patch.txt 6.97KB
Comment #1
Posted on Feb 7, 2010 by Quick Monkey(No comment was entered for this change.)
Comment #2
Posted on Mar 7, 2010 by Quick MonkeyFixed in HEAD / r311
Comment #3
Posted on Dec 1, 2010 by Quick MonkeyEguene
Could you please update on this issue as it's almost year now since you submitted it and we are considering switching to Java6 again.
Thank you, Peter
Comment #4
Posted on Dec 1, 2010 by Happy HippoThis is not an issue on Mac OS X 10.6 as it has both 32-bit and 64-bit Java6. This is still an issue on Mac OS X 10.5.
Status: Fixed
Labels:
Type-Enhancement
Priority-Medium