Bug 1323683 - Fold nsIURIWithQuery into nsIURI

native in moebius
This commit is contained in:
janekptacijarabaci 2018-04-22 21:20:53 +02:00 committed by Roy Tam
commit 8dccc387f9
14 changed files with 110 additions and 107 deletions

View file

@ -371,6 +371,32 @@ nsMozIconURI::SetPath(const nsACString& aPath)
return NS_ERROR_FAILURE;
}
NS_IMETHODIMP
nsMozIconURI::GetFilePath(nsACString& aFilePath)
{
aFilePath.Truncate();
return NS_OK;
}
NS_IMETHODIMP
nsMozIconURI::SetFilePath(const nsACString& aFilePath)
{
return NS_ERROR_FAILURE;
}
NS_IMETHODIMP
nsMozIconURI::GetQuery(nsACString& aQuery)
{
aQuery.Truncate();
return NS_OK;
}
NS_IMETHODIMP
nsMozIconURI::SetQuery(const nsACString& aQuery)
{
return NS_ERROR_FAILURE;
}
NS_IMETHODIMP
nsMozIconURI::GetRef(nsACString& aRef)
{