Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(965)

Unified Diff: media/filters/ffmpeg_video_decoder.h

Issue 10825194: Change Deryptor::DecryptStatus and VideoDecoder::DecoderStatus to *::Status. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/crypto/aes_decryptor_unittest.cc ('k') | media/filters/ffmpeg_video_decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/ffmpeg_video_decoder.h
diff --git a/media/filters/ffmpeg_video_decoder.h b/media/filters/ffmpeg_video_decoder.h
index 0eb34df037da08124468390e92a5d06e0fcb2407..493d8e33e1e2b55f554705b2135e5bf188ed73e8 100644
--- a/media/filters/ffmpeg_video_decoder.h
+++ b/media/filters/ffmpeg_video_decoder.h
@@ -65,11 +65,11 @@ class MEDIA_EXPORT FFmpegVideoDecoder : public VideoDecoder {
// Callback called by the decryptor to deliver decrypted data buffer and
// reporting decrypt status. This callback could be called synchronously or
// asynchronously.
- void BufferDecrypted(Decryptor::DecryptStatus decrypt_status,
+ void BufferDecrypted(Decryptor::Status decrypt_status,
const scoped_refptr<DecoderBuffer>& buffer);
// Carries out the operation scheduled by BufferDecrypted().
- void DoBufferDecrypted(Decryptor::DecryptStatus decrypt_status,
+ void DoBufferDecrypted(Decryptor::Status decrypt_status,
const scoped_refptr<DecoderBuffer>& buffer);
void DecodeBuffer(const scoped_refptr<DecoderBuffer>& buffer);
« no previous file with comments | « media/crypto/aes_decryptor_unittest.cc ('k') | media/filters/ffmpeg_video_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698