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

Unified Diff: media/filters/decrypting_video_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_video_decoder.cc
diff --git a/media/filters/decrypting_video_decoder.cc b/media/filters/decrypting_video_decoder.cc
index 421ec07fa89f8cc1e7ed7bba552ce4fa8d2368e8..4a14bad5dcd31c8bf061897be6c1a4c570e6eed3 100644
--- a/media/filters/decrypting_video_decoder.cc
+++ b/media/filters/decrypting_video_decoder.cc
@@ -30,6 +30,10 @@ DecryptingVideoDecoder::DecryptingVideoDecoder(
trace_id_(0),
weak_factory_(this) {}
+std::string DecryptingVideoDecoder::GetDisplayName() const {
+ return "DecryptingVideoDecoder";
+}
+
void DecryptingVideoDecoder::Initialize(const VideoDecoderConfig& config,
bool /* low_delay */,
const PipelineStatusCB& status_cb,

Powered by Google App Engine
This is Rietveld 408576698