Bug 1042342 - Add GMPDecryptor::DecryptingComplete() to gmp-api. r=jesup

This commit is contained in:
Chris Pearce 2014-07-24 09:35:02 +12:00
Родитель 499998ccd9
Коммит ec6656ed59
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -260,6 +260,10 @@ public:
virtual void Decrypt(GMPBuffer* aBuffer,
GMPEncryptedBufferMetadata* aMetadata) = 0;
// Called when the decryption operations are complete.
// Do not call the GMPDecryptorCallback's functions after this is called.
virtual void DecryptingComplete() = 0;
};
#endif // GMP_DECRYPTION_h_