Bug 1137019 (Part 1) - Get rid of unused LockImage forwarding methods on imgRequest. r=baku

This commit is contained in:
Seth Fowler 2015-03-23 19:37:44 -07:00
parent a149c6f69b
commit 9156a2820a
2 changed files with 0 additions and 14 deletions

View File

@ -578,18 +578,6 @@ imgRequest::CacheChanged(nsIRequest* aNewRequest)
return true; return true;
} }
nsresult
imgRequest::LockImage()
{
return mImage->LockImage();
}
nsresult
imgRequest::UnlockImage()
{
return mImage->UnlockImage();
}
nsresult nsresult
imgRequest::RequestDecode() imgRequest::RequestDecode()
{ {

View File

@ -89,8 +89,6 @@ public:
// Methods that get forwarded to the Image, or deferred until it's // Methods that get forwarded to the Image, or deferred until it's
// instantiated. // instantiated.
nsresult LockImage();
nsresult UnlockImage();
nsresult StartDecoding(); nsresult StartDecoding();
nsresult RequestDecode(); nsresult RequestDecode();