Bug 1199371 - Fix name collision compile error. r=bustage

This commit is contained in:
Matt Woodrow 2015-09-01 16:05:00 -04:00
parent edf722c137
commit ac9b1d019a

View File

@ -478,7 +478,7 @@ void ImageBridgeChild::FlushAllImages(ImageClient* aClient,
waiter->WaitComplete();
}
static void FlushAllImagesAsync(ImageClient* aClient)
static void FlushAllImagesAsyncInternal(ImageClient* aClient)
{
MOZ_ASSERT(aClient);
sImageBridgeChildSingleton->BeginTransaction();
@ -502,7 +502,7 @@ void ImageBridgeChild::FlushAllImagesAsync(ImageClient* aClient)
sImageBridgeChildSingleton->GetMessageLoop()->PostTask(
FROM_HERE,
NewRunnableFunction(&FlushAllImagesAsync, aClient));
NewRunnableFunction(&FlushAllImagesAsyncInternal, aClient));
}
void