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

Side by Side Diff: base/memory/memory_coordinator_client_registry.h

Issue 2311723002: Move memory_coordinator_client and its registry to base/memory (Closed)
Patch Set: Update comments Created 4 years, 3 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 #ifndef BASE_MEMORY_MEMORY_CLIENT_REGISTRY_H_
6 #define BASE_MEMORY_MEMORY_CLIENT_REGISTRY_H_
7
8 #include "base/base_export.h"
9 #include "base/memory/memory_coordinator_client.h"
10 #include "base/memory/singleton.h"
11 #include "base/observer_list_threadsafe.h"
12
13 namespace base {
14
15 // MemoryCoordinatorClientRegistry is the registry for
16 // MemoryCoordinatorClients. Callbacks of MemoryCoordinatorClient are called
17 // via MemoryCoordinator.
18 class BASE_EXPORT MemoryCoordinatorClientRegistry {
19 public:
20 static MemoryCoordinatorClientRegistry* GetInstance();
21
22 ~MemoryCoordinatorClientRegistry();
23
24 // Registers/unregisters a client. Does not take ownership of client.
25 void Register(MemoryCoordinatorClient* client);
26 void Unregister(MemoryCoordinatorClient* client);
27
28 using ClientList = ObserverListThreadSafe<MemoryCoordinatorClient>;
29 ClientList* clients() { return clients_.get(); }
30
31 private:
32 friend struct DefaultSingletonTraits<MemoryCoordinatorClientRegistry>;
33
34 MemoryCoordinatorClientRegistry();
35
36 scoped_refptr<ClientList> clients_;
37 };
38
39 } // namespace base
40
41 #endif // BASE_MEMORY_MEMORY_CLIENT_REGISTRY_H_
OLDNEW
« no previous file with comments | « base/memory/memory_coordinator_client.h ('k') | base/memory/memory_coordinator_client_registry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698