summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebNavigation.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/nsIWebNavigation.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/nsIWebNavigation.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebNavigation.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebNavigation.java b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebNavigation.java
index 78d67d53a3..211bb86530 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebNavigation.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Mozilla/common/org/eclipse/swt/internal/mozilla/nsIWebNavigation.java
@@ -57,10 +57,6 @@ public class nsIWebNavigation extends nsISupports {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 4, getAddress());
}
- public int GotoIndex(int index) {
- return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 5, getAddress(), index);
- }
-
public static final int LOAD_FLAGS_MASK = 65535;
public static final int LOAD_FLAGS_NONE = 0;
public static final int LOAD_FLAGS_IS_REFRESH = 16;
@@ -87,23 +83,7 @@ public class nsIWebNavigation extends nsISupports {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 8, getAddress(), stopFlags);
}
- public int GetDocument(long /*int*/[] aDocument) {
- return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 9, getAddress(), aDocument);
- }
-
public int GetCurrentURI(long /*int*/[] aCurrentURI) {
return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 10, getAddress(), aCurrentURI);
}
-
- public int GetReferringURI(long /*int*/[] aReferringURI) {
- return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 11, getAddress(), aReferringURI);
- }
-
- public int GetSessionHistory(long /*int*/[] aSessionHistory) {
- return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 12, getAddress(), aSessionHistory);
- }
-
- public int SetSessionHistory(long /*int*/ aSessionHistory) {
- return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 13, getAddress(), aSessionHistory);
- }
}