Bug 960648: Consistently mark IPDL methods as MOZ_OVERRIDE. Part 2. r=bent

This commit is contained in:
Josh Aas
2014-01-17 13:49:39 -06:00
parent 38a4cae5ec
commit 3d9ebbdeae
14 changed files with 133 additions and 126 deletions

View File

@@ -42,15 +42,15 @@ class WebSocketChannelParent : public PWebSocketParent,
const uint32_t& aPingInterval,
const bool& aClientSetPingInterval,
const uint32_t& aPingTimeout,
const bool& aClientSetPingTimeout);
bool RecvClose(const uint16_t & code, const nsCString & reason);
bool RecvSendMsg(const nsCString& aMsg);
bool RecvSendBinaryMsg(const nsCString& aMsg);
const bool& aClientSetPingTimeout) MOZ_OVERRIDE;
bool RecvClose(const uint16_t & code, const nsCString & reason) MOZ_OVERRIDE;
bool RecvSendMsg(const nsCString& aMsg) MOZ_OVERRIDE;
bool RecvSendBinaryMsg(const nsCString& aMsg) MOZ_OVERRIDE;
bool RecvSendBinaryStream(const InputStreamParams& aStream,
const uint32_t& aLength);
bool RecvDeleteSelf();
const uint32_t& aLength) MOZ_OVERRIDE;
bool RecvDeleteSelf() MOZ_OVERRIDE;
void ActorDestroy(ActorDestroyReason why);
void ActorDestroy(ActorDestroyReason why) MOZ_OVERRIDE;
nsCOMPtr<nsIAuthPromptProvider> mAuthProvider;
nsCOMPtr<nsIWebSocketChannel> mChannel;