Bug 1042373 - Fix unused-in-opt-build WAE. r=burning.

This commit is contained in:
Chris Pearce 2014-07-28 11:42:06 +12:00
Родитель ca9b652234
Коммит 295eaae25f
2 изменённых файлов: 8 добавлений и 4 удалений

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

@ -13,8 +13,10 @@ namespace mozilla {
namespace gmp {
GMPDecryptorChild::GMPDecryptorChild(GMPChild* aPlugin)
: mPlugin(aPlugin)
, mSession(nullptr)
: mSession(nullptr)
#ifdef DEBUG
, mPlugin(aPlugin)
#endif
{
MOZ_ASSERT(mPlugin);
}

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

@ -114,11 +114,13 @@ private:
virtual bool RecvDecryptingComplete() MOZ_OVERRIDE;
GMPChild* mPlugin;
// GMP's GMPDecryptor implementation.
// Only call into this on the (GMP process) main thread.
GMPDecryptor* mSession;
#ifdef DEBUG
GMPChild* mPlugin;
#endif
};
} // namespace gmp