From ecf1901eb3f62eee8db42187d28cc7f44d250c8a Mon Sep 17 00:00:00 2001 From: kipp Date: Mon, 1 Jun 1998 19:59:13 +0000 Subject: [PATCH] Added OnOverLink hook for tracking mouse-over's over links git-svn-id: svn://10.0.0.236/trunk@2836 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webshell/public/nsILinkHandler.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/mozilla/webshell/public/nsILinkHandler.h b/mozilla/webshell/public/nsILinkHandler.h index c9d5a147de8..16c1d17f8cd 100644 --- a/mozilla/webshell/public/nsILinkHandler.h +++ b/mozilla/webshell/public/nsILinkHandler.h @@ -58,6 +58,17 @@ public: const nsString& aTargetSpec, nsIPostData* aPostData = 0) = 0; + /** + * Process a mouse-over a link. aFrame is the frame that contains the + * linked content. aURLSpec is an absolute url spec that defines the + * destination for the link. aTargetSpec indicates where the link is + * targeted (it may be an empty string). + */ + NS_IMETHOD OnOverLink(nsIFrame* aFrame, + const nsString& aURLSpec, + const nsString& aTargetSpec, + nsIPostData* aPostData = 0) = 0; + /** * Get the state of a link to a given absolute URL */