Bug 757365 - Don't use uint8 in DocumentRenderer{Parent,Child}.cpp; r=bjacob

This commit is contained in:
Ms2ger 2012-05-25 09:18:30 +02:00
Родитель 98547dad21
Коммит dc54279bc3
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -68,7 +68,7 @@ DocumentRendererChild::RenderDocument(nsIDOMWindow *window,
data.SetLength(renderSize.width * renderSize.height * 4);
nsRefPtr<gfxImageSurface> surf =
new gfxImageSurface(reinterpret_cast<uint8*>(data.BeginWriting()),
new gfxImageSurface(reinterpret_cast<uint8_t*>(data.BeginWriting()),
gfxIntSize(renderSize.width, renderSize.height),
4 * renderSize.width,
gfxASurface::ImageFormatARGB32);

Просмотреть файл

@ -28,7 +28,7 @@ void DocumentRendererParent::DrawToCanvas(const nsIntSize& aSize,
return;
nsRefPtr<gfxImageSurface> surf =
new gfxImageSurface(reinterpret_cast<uint8*>(const_cast<nsCString&>(aData).BeginWriting()),
new gfxImageSurface(reinterpret_cast<uint8_t*>(const_cast<nsCString&>(aData).BeginWriting()),
gfxIntSize(aSize.width, aSize.height),
aSize.width * 4,
gfxASurface::ImageFormatARGB32);