mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 00:38:39 +09:00
Bug 1323683 - Fold nsIURIWithQuery into nsIURI
native in moebius
This commit is contained in:
parent
75dcd43896
commit
8dccc387f9
14 changed files with 110 additions and 107 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue