Bug 1110814 followup: Add missing 'override' annotations to new methods in CacheParent. rs=ehsan

This commit is contained in:
Daniel Holbert 2015-03-22 10:33:56 -07:00
parent 8a89e647fd
commit 40d06db594

View File

@ -32,8 +32,8 @@ public:
private:
// PCacheParent method
virtual void ActorDestroy(ActorDestroyReason aReason) override;
virtual PCachePushStreamParent* AllocPCachePushStreamParent();
virtual bool DeallocPCachePushStreamParent(PCachePushStreamParent* aActor);
virtual PCachePushStreamParent* AllocPCachePushStreamParent() override;
virtual bool DeallocPCachePushStreamParent(PCachePushStreamParent* aActor) override;
virtual bool RecvTeardown() override;
virtual bool
RecvMatch(const RequestId& aRequestId, const PCacheRequest& aRequest,