stub out OutputReferrerURL to fix phoenix bustage

This commit is contained in:
bryner%netscape.com 2003-01-15 02:41:36 +00:00
parent 797f67be68
commit 376b200dd2
2 changed files with 22 additions and 0 deletions

View File

@ -117,4 +117,21 @@ interface nsIBrowserHistory : nsISupports
*/
void markPageAsTyped(in string url);
/**
* outputReferrerURL
* Prints out referrer information for a url to a
* data file if browser.history.url.datacapture.mode is set
* to 1 or 2 (see the comment in nsGlobalHistory.cpp for
* more details).
*
* This method is a big hack and only temporary. Please do NOT use
* it in your code. It will be removed after the data
* collection phase of the project described in bug 182366 is
* over.
*
* @param aURL a url in global history
* @param aReferrer the referrer url to aURL
*/
void outputReferrerURL(in string aURL, in string aReferrer);
};

View File

@ -1274,6 +1274,11 @@ nsGlobalHistory::MarkPageAsTyped(const char* aURL)
return SetRowValue(row, kToken_TypedColumn, 1);
}
NS_IMETHODIMP
nsGlobalHistory::OutputReferrerURL(const char* aURL, const char* aReferrer)
{
return NS_OK;
}
//----------------------------------------------------------------------
//