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

Unified Diff: media/filters/decrypting_video_decoder.cc

Issue 770423004: Add dedicated PipelineStatus UMAs for encrypted playback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address CL comments Created 6 years 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/filters/decrypting_video_decoder.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/decrypting_video_decoder.cc
diff --git a/media/filters/decrypting_video_decoder.cc b/media/filters/decrypting_video_decoder.cc
index 4a14bad5dcd31c8bf061897be6c1a4c570e6eed3..8b105fea2b1bb234c2cd6c7c52a96b718c0fdb1c 100644
--- a/media/filters/decrypting_video_decoder.cc
+++ b/media/filters/decrypting_video_decoder.cc
@@ -19,6 +19,8 @@
namespace media {
+const char DecryptingVideoDecoder::kDecoderName[] = "DecryptingVideoDecoder";
+
DecryptingVideoDecoder::DecryptingVideoDecoder(
const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
const SetDecryptorReadyCB& set_decryptor_ready_cb)
@@ -31,7 +33,7 @@ DecryptingVideoDecoder::DecryptingVideoDecoder(
weak_factory_(this) {}
std::string DecryptingVideoDecoder::GetDisplayName() const {
- return "DecryptingVideoDecoder";
+ return kDecoderName;
}
void DecryptingVideoDecoder::Initialize(const VideoDecoderConfig& config,
« no previous file with comments | « media/filters/decrypting_video_decoder.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698