diff options
Diffstat (limited to 'chromium/content/gpu/gpu_child_thread.cc')
-rw-r--r-- | chromium/content/gpu/gpu_child_thread.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/content/gpu/gpu_child_thread.cc b/chromium/content/gpu/gpu_child_thread.cc index 0ae0a633850..eb0485fc15d 100644 --- a/chromium/content/gpu/gpu_child_thread.cc +++ b/chromium/content/gpu/gpu_child_thread.cc @@ -134,9 +134,9 @@ void GpuChildThread::Init(const base::Time& process_start_time) { associated_registry->AddInterface(base::BindRepeating( &GpuChildThread::CreateVizMainService, base::Unretained(this))); - memory_pressure_listener_ = - std::make_unique<base::MemoryPressureListener>(base::BindRepeating( - &GpuChildThread::OnMemoryPressure, base::Unretained(this))); + memory_pressure_listener_ = std::make_unique<base::MemoryPressureListener>( + FROM_HERE, base::BindRepeating(&GpuChildThread::OnMemoryPressure, + base::Unretained(this))); } void GpuChildThread::CreateVizMainService( |