Issue #1258 - Part 7: UXP Specific fixes

* This includes Bug 1326433 for Janek fallout (ldap already had this fix)
This commit is contained in:
Matt A. Tobin 2019-11-03 22:50:47 -05:00 • committed by Roy Tam
commit 971009881c
8 changed files with 54 additions and 37 deletions

View file

@ -248,6 +248,30 @@ nsAddbookUrl::SetRef(const nsACString &aRef)
return ParseUrl();
}
NS_IMETHODIMP
nsAddbookUrl::GetFilePath(nsACString &aFilePath)
{
return m_baseURL->GetFilePath(aFilePath);
}
NS_IMETHODIMP
nsAddbookUrl::SetFilePath(const nsACString &aFilePath)
{
return m_baseURL->SetFilePath(aFilePath);
}
NS_IMETHODIMP
nsAddbookUrl::GetQuery(nsACString &aQuery)
{
return m_baseURL->GetQuery(aQuery);
}
NS_IMETHODIMP
nsAddbookUrl::SetQuery(const nsACString &aQuery)
{
return m_baseURL->SetQuery(aQuery);
}
NS_IMETHODIMP nsAddbookUrl::EqualsExceptRef(nsIURI *other, bool *_retval)
{
// The passed-in URI might be an nsMailtoUrl. Pass our inner URL to its