Bug 1117265 - Mark virtual overridden functions as MOZ_OVERRIDE in IPC code; r=baku

This commit is contained in:
Ehsan Akhgari 2015-01-02 21:14:01 -05:00
Родитель 4d845d4829
Коммит d345515746
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -26,7 +26,7 @@ public:
NS_IMETHOD
CollectReports(nsIHandleReportCallback* aHandleReport, nsISupports* aData,
bool aAnonymize)
bool aAnonymize) MOZ_OVERRIDE
{
nsresult rv;
rv = MOZ_COLLECT_REPORT(

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

@ -27,10 +27,10 @@ public:
virtual void ActorDestroy(ActorDestroyReason aWhy) MOZ_OVERRIDE;
PTestShellCommandParent*
AllocPTestShellCommandParent(const nsString& aCommand);
AllocPTestShellCommandParent(const nsString& aCommand) MOZ_OVERRIDE;
bool
DeallocPTestShellCommandParent(PTestShellCommandParent* aActor);
DeallocPTestShellCommandParent(PTestShellCommandParent* aActor) MOZ_OVERRIDE;
bool
CommandDone(TestShellCommandParent* aActor, const nsString& aResponse);