зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1042373 - Fix unused-in-opt-build WAE. r=burning.
This commit is contained in:
Родитель
ca9b652234
Коммит
295eaae25f
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче