summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebProgress.java
diff options
context:
space:
mode:
authorGrant Gayed <grant_gayed@ca.ibm.com>2013-06-25 11:20:27 -0400
committerGrant Gayed <grant_gayed@ca.ibm.com>2013-06-25 11:20:27 -0400
commit61ef4aabdf27aa1ae4bf019955e3166ba778c10f (patch)
tree6ea0ab082476479a8043ebff6f4cd97d207b8134 /bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebProgress.java
parentb05ed3b2410bf9880ea77e7dcf0101adc35a621a (diff)
downloadeclipse.platform.swt-61ef4aabdf27aa1ae4bf019955e3166ba778c10f.tar.gz
eclipse.platform.swt-61ef4aabdf27aa1ae4bf019955e3166ba778c10f.tar.xz
eclipse.platform.swt-61ef4aabdf27aa1ae4bf019955e3166ba778c10f.zip
Bug 411058 - finish trimming XPCOM interfaces down to the functions that
are used
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebProgress.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebProgress.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebProgress.java b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebProgress.java
index 9abde41d7a..1686342c7a 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebProgress.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebProgress.java
@@ -52,19 +52,7 @@ public class nsIWebProgress extends nsISupports {
public static final int NOTIFY_LOCATION = 128;
public static final int NOTIFY_ALL = 255;
- public int AddProgressListener(long /*int*/ listener, int aNotifyMask) {
- return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 1, getAddress(), listener, aNotifyMask);
- }
-
- public int RemoveProgressListener(long /*int*/ listener) {
- return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 2, getAddress(), listener);
- }
-
public int GetDOMWindow(long /*int*/[] aDOMWindow) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 3, getAddress(), aDOMWindow);
}
-
- public int GetIsLoadingDocument(int[] aIsLoadingDocument) {
- return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 4, getAddress(), aIsLoadingDocument);
- }
}