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

Unified Diff: chromecast/media/service/cast_renderer.cc

Issue 2721553004: Remove auto raw pointer deduction from non-linux specific code. (Closed)
Patch Set: Created 3 years, 10 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: chromecast/media/service/cast_renderer.cc
diff --git a/chromecast/media/service/cast_renderer.cc b/chromecast/media/service/cast_renderer.cc
index f3bd681a8605aaef4ae59c9b7e44936ec514f403..ed463b08fd5a5cc290b28e54ce8d6a76a2eb79c9 100644
--- a/chromecast/media/service/cast_renderer.cc
+++ b/chromecast/media/service/cast_renderer.cc
@@ -205,7 +205,7 @@ void CastRenderer::SetCdm(::media::CdmContext* cdm_context,
DCHECK(task_runner_->BelongsToCurrentThread());
DCHECK(cdm_context);
- auto cast_cdm_context = static_cast<CastCdmContext*>(cdm_context);
+ auto* cast_cdm_context = static_cast<CastCdmContext*>(cdm_context);
if (!pipeline_) {
// If the pipeline has not yet been created in Initialize(), cache

Powered by Google App Engine
This is Rietveld 408576698