| Index: media/gpu/avda_codec_allocator.cc
|
| diff --git a/media/gpu/avda_codec_allocator.cc b/media/gpu/avda_codec_allocator.cc
|
| index 0c6cd74fc66bcc019674225faf55c89e67bd0478..d9b1c8e429fd30072e48495149212a36f46f05a9 100644
|
| --- a/media/gpu/avda_codec_allocator.cc
|
| +++ b/media/gpu/avda_codec_allocator.cc
|
| @@ -341,7 +341,7 @@ AVDACodecAllocator::AVDACodecAllocator(base::TickClock* tick_clock,
|
| base::WaitableEvent* stop_event)
|
| : stop_event_for_testing_(stop_event), weak_this_factory_(this) {
|
| // We leak the clock we create, but that's okay because we're a singleton.
|
| - auto clock = tick_clock ? tick_clock : new base::DefaultTickClock();
|
| + auto* clock = tick_clock ? tick_clock : new base::DefaultTickClock();
|
|
|
| // Create threads with names and indices that match up with TaskType.
|
| threads_.push_back(new ThreadAndHangDetector("AVDAAutoThread", clock));
|
|
|