mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-24 11:27:49 +00:00
Comment only checkin, omitted by mistake from bug 182259
This commit is contained in:
parent
d34f0cb1c4
commit
85a90890a6
@ -160,12 +160,18 @@ PrintContext::SetPageDim(nsRect* aPageDim)
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ignore any attempt to set an animation mode for printed images
|
||||
*/
|
||||
NS_IMETHODIMP
|
||||
PrintContext::SetImageAnimationMode(PRUint16 aMode)
|
||||
{
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
/**
|
||||
* Printed images are never animated: always return kDontAnimMode
|
||||
*/
|
||||
NS_IMETHODIMP
|
||||
PrintContext::GetImageAnimationMode(PRUint16* aModeResult)
|
||||
{
|
||||
|
@ -161,12 +161,19 @@ PrintPreviewContext::SetPageDim(nsRect* aPageDim)
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ignore any attempt to set an animation mode for images in print
|
||||
* preview
|
||||
*/
|
||||
NS_IMETHODIMP
|
||||
PrintPreviewContext::SetImageAnimationMode(PRUint16 aMode)
|
||||
{
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
/**
|
||||
* Images in print preview are never animated: always return kDontAnimMode
|
||||
*/
|
||||
NS_IMETHODIMP
|
||||
PrintPreviewContext::GetImageAnimationMode(PRUint16* aModeResult)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user