a=edburns

r=edburns
author=ashuk
bug=28407

New java code for spec-compliant impl ported to solaris -- Ashu K.


git-svn-id: svn://10.0.0.236/trunk@62336 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ashuk%eng.sun.com
2000-03-07 22:10:08 +00:00
parent 26928458bb
commit 7c6e50cbd3
2 changed files with 6 additions and 6 deletions

View File

@@ -113,7 +113,7 @@ public void createWindow(int nativeWindow, Rectangle bounds)
synchronized(this) {
nativeWebShell = nativeCreateInitContext(nativeWindow, bounds.x,
bounds.y, bounds.width,
bounds.height);
bounds.height, myBrowserControl);
eventThread = new NativeEventThread("EventThread-" +
nativeWebShell,
myBrowserControl);
@@ -208,7 +208,7 @@ public native void nativeSetBounds(int webShellPtr, int x, int y,
*/
public native int nativeCreateInitContext(int nativeWindow,
int x, int y, int width, int height);
int x, int y, int width, int height, BrowserControl myBrowserControlImpl);
public native void nativeMoveWindowTo(int webShellPtr, int x, int y);
@@ -233,7 +233,7 @@ public static void main(String [] args)
Log.setApplicationName("WindowControlImpl");
Log.setApplicationVersion("0.0");
Log.setApplicationVersionDate("$Id: WindowControlImpl.java,v 1.1 2000-03-04 01:10:56 edburns%acm.org Exp $");
Log.setApplicationVersionDate("$Id: WindowControlImpl.java,v 1.2 2000-03-07 22:10:06 ashuk%eng.sun.com Exp $");
try {
org.mozilla.webclient.BrowserControlFactory.setAppData(args[0]);

View File

@@ -149,7 +149,7 @@ public void initialize(String verifiedBinDirAbsolutePath) throws Exception
{
synchronized(this) {
if (!hasBeenInitialized()) {
nativeInitialize(verifiedBinDirAbsolutePath);
nativeAppInitialize(verifiedBinDirAbsolutePath);
initialized = true;
}
}
@@ -185,7 +185,7 @@ public boolean hasBeenInitialized()
*/
private native void nativeInitialize (String verifiedBinDirAbsolutePath) throws Exception;
private native void nativeAppInitialize (String verifiedBinDirAbsolutePath) throws Exception;
/**
@@ -222,7 +222,7 @@ public static void main(String [] args)
WrapperFactory me = new WrapperFactoryImpl();
Log.setApplicationName("WrapperFactoryImpl");
Log.setApplicationVersion("0.0");
Log.setApplicationVersionDate("$Id: WrapperFactoryImpl.java,v 1.1 2000-03-04 01:10:56 edburns%acm.org Exp $");
Log.setApplicationVersionDate("$Id: WrapperFactoryImpl.java,v 1.2 2000-03-07 22:10:08 ashuk%eng.sun.com Exp $");
}