Index: media/filters/decrypting_audio_decoder.h |
diff --git a/media/filters/decrypting_audio_decoder.h b/media/filters/decrypting_audio_decoder.h |
index 533b9a244905ab9c60766d58ec5766233d71df84..bf6fd544e5bcd7d7dc0b7e7a02334a16ee318e7a 100644 |
--- a/media/filters/decrypting_audio_decoder.h |
+++ b/media/filters/decrypting_audio_decoder.h |
@@ -68,7 +68,7 @@ class MEDIA_EXPORT DecryptingAudioDecoder : public AudioDecoder { |
// TODO(xhwang): Add a ASCII state diagram in this file after this class |
// stabilizes. |
// TODO(xhwang): Update this diagram for DecryptingAudioDecoder. |
- enum DecoderState { |
+ enum State { |
kUninitialized = 0, |
kDecryptorRequested, |
kPendingDecoderInit, |
@@ -136,7 +136,7 @@ class MEDIA_EXPORT DecryptingAudioDecoder : public AudioDecoder { |
scoped_refptr<base::MessageLoopProxy> message_loop_; |
// Current state of the DecryptingAudioDecoder. |
- DecoderState state_; |
+ State state_; |
PipelineStatusCB init_cb_; |
StatisticsCB statistics_cb_; |