Bug 1271491: P7. Remove unused members. r=alfredo

MozReview-Commit-ID: FEY5j7PWmJy

--HG--
extra : rebase_source : 436c4458337ed3d2857ed02555a3e02afac7fd26
This commit is contained in:
Jean-Yves Avenard 2016-05-12 19:06:14 +10:00
Родитель cc8c8725df
Коммит 4e25a1e963
4 изменённых файлов: 0 добавлений и 17 удалений

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

@ -18,13 +18,6 @@ GonkDecoderModule::~GonkDecoderModule()
{
}
/* static */
void
GonkDecoderModule::Init()
{
MOZ_ASSERT(NS_IsMainThread(), "Must be on main thread.");
}
already_AddRefed<MediaDataDecoder>
GonkDecoderModule::CreateVideoDecoder(const VideoInfo& aConfig,
mozilla::layers::LayersBackend aLayersBackend,

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

@ -32,8 +32,6 @@ public:
MediaDataDecoderCallback* aCallback,
DecoderDoctorDiagnostics* aDiagnostics) override;
static void Init();
ConversionRequired
DecoderNeedsConversion(const TrackInfo& aConfig) const override;

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

@ -33,12 +33,6 @@ OmxDecoderModule::CreateAudioDecoder(const AudioInfo& aConfig,
return decoder.forget();
}
void
OmxDecoderModule::Init()
{
MOZ_ASSERT(NS_IsMainThread(), "Must be on main thread.");
}
PlatformDecoderModule::ConversionRequired
OmxDecoderModule::DecoderNeedsConversion(const TrackInfo& aConfig) const
{

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

@ -27,8 +27,6 @@ public:
MediaDataDecoderCallback* aCallback,
DecoderDoctorDiagnostics* aDiagnostics) override;
static void Init();
bool SupportsMimeType(const nsACString& aMimeType,
DecoderDoctorDiagnostics* aDiagnostics) const override;