Bug 1057839 - Fix build failure on VS2013 Update 3 with --enable-warnings-as-errors due to Warning C4717. r=roc

This commit is contained in:
Masatoshi Kimura 2014-08-25 07:13:38 +09:00
parent 5afe549711
commit 9b1d2327f3

View File

@ -98,14 +98,14 @@ public:
ipc::SharedMemory::SharedMemoryType aType,
ipc::Shmem* aShmem) MOZ_OVERRIDE
{
return AllocShmem(aSize, aType, aShmem);
return PImageBridgeParent::AllocShmem(aSize, aType, aShmem);
}
bool AllocUnsafeShmem(size_t aSize,
ipc::SharedMemory::SharedMemoryType aType,
ipc::Shmem* aShmem) MOZ_OVERRIDE
{
return AllocUnsafeShmem(aSize, aType, aShmem);
return PImageBridgeParent::AllocUnsafeShmem(aSize, aType, aShmem);
}
void DeallocShmem(ipc::Shmem& aShmem) MOZ_OVERRIDE