public void OnHistoryNewEntry(nsIURI aNewURI)
        {
            nsISHistoryListener b = (nsISHistoryListener)_browser;

            //if (b != null)
            //    b.OnHistoryNewEntry(aNewURI);
            throw new NotImplementedException();
        }
Example #2
0
        public void OnHistoryNewEntry(nsIURI aNewURI)
        {
            nsISHistoryListener b = (nsISHistoryListener)_browser;

            if (b != null)
            {
                b.OnHistoryNewEntry(aNewURI);
            }
        }
Example #3
0
        public bool OnHistoryPurge(int aNumEntries)
        {
            nsISHistoryListener b = (nsISHistoryListener)_browser;

            if (b != null)
            {
                return(b.OnHistoryPurge(aNumEntries));
            }
            else
            {
                return(false);
            }
        }
Example #4
0
        public bool OnHistoryGotoIndex(int aIndex, nsIURI aGotoURI)
        {
            nsISHistoryListener b = (nsISHistoryListener)_browser;

            if (b != null)
            {
                return(b.OnHistoryGotoIndex(aIndex, aGotoURI));
            }
            else
            {
                return(false);
            }
        }
Example #5
0
        public bool OnHistoryReload(nsIURI aReloadURI, uint aReloadFlags)
        {
            nsISHistoryListener b = (nsISHistoryListener)_browser;

            if (b != null)
            {
                return(b.OnHistoryReload(aReloadURI, aReloadFlags));
            }
            else
            {
                return(false);
            }
        }
Example #6
0
        public bool OnHistoryGoForward(nsIURI aForwardURI)
        {
            nsISHistoryListener b = (nsISHistoryListener)_browser;

            if (b != null)
            {
                return(b.OnHistoryGoForward(aForwardURI));
            }
            else
            {
                return(false);
            }
        }
Example #7
0
        public bool OnHistoryGoBack(nsIURI aBackURI)
        {
            nsISHistoryListener b = (nsISHistoryListener)_browser;

            if (b != null)
            {
                return(b.OnHistoryGoBack(aBackURI));
            }
            else
            {
                return(false);
            }
        }
Example #8
0
 public GeckoSHistoryListener(nsISHistoryListener p_broowser)
 {
     _weakBrowser = new System.WeakReference(p_broowser);
 }
 public GeckoSHistoryListener(nsISHistoryListener p_broowser)
 {
     _weakBrowser = new System.WeakReference(p_broowser);
 }
Example #10
0
        public static nsISHistoryListener GetProxy(Mono.WebBrowser.IWebBrowser control, nsISHistoryListener obj)
        {
            object o = Base.GetProxyForObject(control, typeof(nsISHistoryListener).GUID, obj);

            return(o as nsISHistoryListener);
        }
Example #11
0
		public static nsISHistoryListener GetProxy (Mono.WebBrowser.IWebBrowser control, nsISHistoryListener obj)
		{
			object o = Base.GetProxyForObject (control, typeof(nsISHistoryListener).GUID, obj);
			return o as nsISHistoryListener;
		}