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

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

Issue 2721553004: Remove auto raw pointer deduction from non-linux specific code. (Closed)
Patch Set: rebase 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 dde8c76677a77bf15d13b03f31d20ec0574507b9..ff4efa933d60c30b76d6bcb4de36d3ed10ebc577 100644
--- a/chromecast/media/service/cast_renderer.cc
+++ b/chromecast/media/service/cast_renderer.cc
@@ -220,7 +220,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
« no previous file with comments | « chromecast/browser/devtools/cast_devtools_manager_delegate.cc ('k') | chromeos/audio/cras_audio_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698