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

Side by Side Diff: components/memory_coordinator/browser/memory_coordinator_impl.cc

Issue 2094583002: Add MemoryCoordinator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 4 years, 5 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 unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698