--- DownloadFactory.java	Fri Aug  7 13:55:18 2009
+++ ExternalFactory.java	Fri Aug  7 13:55:32 2009
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2003, 2007 IBM Corporation and others.
+ * Copyright (c) 2008 IBM Corporation and others.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
@@ -10,15 +10,15 @@
  *******************************************************************************/
 package org.eclipse.swt.browser;
 
-import org.eclipse.swt.internal.C;
+import org.eclipse.swt.internal.*;
 import org.eclipse.swt.internal.mozilla.*;
 
-class DownloadFactory {
+class ExternalFactory {
 	XPCOMObject supports;
 	XPCOMObject factory;
 	int refCount = 0;
 
-DownloadFactory () {
+ExternalFactory () {
 	createCOMInterfaces ();
 }
 
@@ -74,23 +74,23 @@
 		AddRef ();
 		return XPCOM.NS_OK;
 	}
-	
+
 	XPCOM.memmove (ppvObject, new int /*long*/[] {0}, C.PTR_SIZEOF);
 	return XPCOM.NS_ERROR_NO_INTERFACE;
 }
-        	
+
 int Release () {
 	refCount--;
 	if (refCount == 0) disposeCOMInterfaces ();
 	return refCount;
 }
-	
+
 /* nsIFactory */
 
 int CreateInstance (int /*long*/ aOuter, int /*long*/ iid, int /*long*/ result) {
-	Download download = new Download ();
-	download.AddRef ();
-	XPCOM.memmove (result, new int /*long*/[] {download.getAddress ()}, C.PTR_SIZEOF);
+	External external = new External ();
+	external.AddRef ();
+	XPCOM.memmove (result, new int /*long*/[] {external.getAddress ()}, C.PTR_SIZEOF);
 	return XPCOM.NS_OK;
 }
 
