Bug 943686 - Add imgRequestProxy.cpp to unified sources. r=tn

MozReview-Commit-ID: ITT9T22WyYG
This commit is contained in:
Eric Rahm 2017-03-21 11:09:15 -07:00
parent 2f16bd241c
commit a7ec07a00d
2 changed files with 2 additions and 2 deletions

View File

@ -617,7 +617,7 @@ imgRequestProxy* NewStaticProxy(imgRequestProxy* aThis)
{
nsCOMPtr<nsIPrincipal> currentPrincipal;
aThis->GetImagePrincipal(getter_AddRefs(currentPrincipal));
RefPtr<Image> image = aThis->GetImage();
RefPtr<image::Image> image = aThis->GetImage();
return new imgRequestProxyStatic(image, currentPrincipal);
}

View File

@ -68,6 +68,7 @@ UNIFIED_SOURCES += [
'imgFrame.cpp',
'imgLoader.cpp',
'imgRequest.cpp',
'imgRequestProxy.cpp',
'imgTools.cpp',
'MultipartImage.cpp',
'OrientedImage.cpp',
@ -85,7 +86,6 @@ if CONFIG['MOZ_ENABLE_SKIA']:
# These files can't be unified because of ImageLogging.h #include order issues.
SOURCES += [
'imgRequestProxy.cpp',
'ProgressTracker.cpp',
'RasterImage.cpp',
]