Bug 1070722 - Backout accidental inclusions in a4ae53da4fe6

This commit is contained in:
Matt Woodrow 2014-09-30 16:12:28 +13:00
Родитель 492e380aa7
Коммит 05fe9a0d0c
1 изменённых файлов: 3 добавлений и 4 удалений

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

@ -7,7 +7,6 @@
#include "gfxQuartzSurface.h"
#include "gfxQuartzImageSurface.h"
#include "gfxImageSurface.h"
#include "mozilla/gfx/2D.h"
#include "gfxMacPlatformFontList.h"
@ -76,9 +75,9 @@ gfxPlatformMac::gfxPlatformMac()
uint32_t canvasMask = BackendTypeBit(BackendType::CAIRO) |
BackendTypeBit(BackendType::SKIA) |
BackendTypeBit(BackendType::COREGRAPHICS);
uint32_t contentMask = BackendTypeBit(BackendType::CAIRO);
uint32_t contentMask = BackendTypeBit(BackendType::COREGRAPHICS);
InitBackendPrefs(canvasMask, BackendType::COREGRAPHICS,
contentMask, BackendType::CAIRO);
contentMask, BackendType::COREGRAPHICS);
}
gfxPlatformMac::~gfxPlatformMac()
@ -102,7 +101,7 @@ gfxPlatformMac::CreateOffscreenSurface(const IntSize& size,
gfxContentType contentType)
{
nsRefPtr<gfxASurface> newSurface =
new gfxImageSurface(ThebesIntSize(size),
new gfxQuartzSurface(ThebesIntSize(size),
OptimalFormatForContent(contentType));
return newSurface.forget();
}