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

Unified Diff: media/filters/decrypting_audio_decoder.cc

Issue 547913002: MediaLog: Log selected audio/video decoder name. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use property instead of log. Created 6 years, 3 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
Index: media/filters/decrypting_audio_decoder.cc
diff --git a/media/filters/decrypting_audio_decoder.cc b/media/filters/decrypting_audio_decoder.cc
index ee50e2edac8ff6d5502790a2644049acd4975ef3..c5494f04f1c705a89331120a7c8b09550e48bd89 100644
--- a/media/filters/decrypting_audio_decoder.cc
+++ b/media/filters/decrypting_audio_decoder.cc
@@ -44,6 +44,10 @@ DecryptingAudioDecoder::DecryptingAudioDecoder(
key_added_while_decode_pending_(false),
weak_factory_(this) {}
+std::string DecryptingAudioDecoder::GetDisplayName() const {
+ return "DecryptingAudioDecoder";
+}
+
void DecryptingAudioDecoder::Initialize(const AudioDecoderConfig& config,
const PipelineStatusCB& status_cb,
const OutputCB& output_cb) {

Powered by Google App Engine
This is Rietveld 408576698