Remove dead code, stuff that used to override IPDL methods that don't exist any more. No bug. r=jduell,eitan

This commit is contained in:
Josh Aas 2014-01-17 13:58:05 -06:00
Родитель 31f560c053
Коммит eca8766d4d
3 изменённых файлов: 0 добавлений и 11 удалений

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

@ -111,14 +111,6 @@ SpeechSynthesisRequestChild::RecvOnResume(const float& aElapsedTime,
return true;
}
bool
SpeechSynthesisRequestChild::RecvOnError(const float& aElapsedTime,
const uint32_t& aCharIndex)
{
mTask->DispatchErrorImpl(aElapsedTime, aCharIndex);
return true;
}
bool
SpeechSynthesisRequestChild::RecvOnBoundary(const nsString& aName,
const float& aElapsedTime,

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

@ -58,8 +58,6 @@ protected:
virtual bool RecvOnResume(const float& aElapsedTime, const uint32_t& aCharIndex) MOZ_OVERRIDE;
virtual bool RecvOnError(const float& aElapsedTime, const uint32_t& aCharIndex);
virtual bool RecvOnBoundary(const nsString& aName, const float& aElapsedTime,
const uint32_t& aCharIndex) MOZ_OVERRIDE;

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

@ -45,7 +45,6 @@ class WebSocketChannelChild : public BaseWebSocketChannel,
bool RecvOnBinaryMessageAvailable(const nsCString& aMsg) MOZ_OVERRIDE;
bool RecvOnAcknowledge(const uint32_t& aSize) MOZ_OVERRIDE;
bool RecvOnServerClose(const uint16_t& aCode, const nsCString &aReason) MOZ_OVERRIDE;
bool RecvAsyncOpenFailed();
void OnStart(const nsCString& aProtocol, const nsCString& aExtensions);
void OnStop(const nsresult& aStatusCode);