Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "components/memory_coordinator/browser/memory_coordinator_impl.h" | |
| 6 | |
| 7 namespace memory_coordinator { | |
| 8 | |
| 9 MemoryCoordinatorImpl::MemoryCoordinatorImpl() {} | |
| 10 | |
| 11 MemoryCoordinatorImpl::~MemoryCoordinatorImpl() {} | |
| 12 | |
| 13 void MemoryCoordinatorImpl::RendererLaunched( | |
| 14 shell::InterfaceProvider* remote_interfaces) { | |
| 15 mojom::ChildMemoryCoordinatorPtr child; | |
| 16 remote_interfaces->GetInterface(mojo::GetProxy(&child)); | |
| 17 children_.AddPtr(std::move(child)); | |
|
haraken
2016/07/08 02:40:25
Don't we need to remove the pointer when the rende
bashi
2016/07/08 02:44:49
No. InterfacePtrSet removes it when an error occur
| |
| 18 } | |
| 19 | |
| 20 } // namespace memory_coordinator | |
| OLD | NEW |