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 #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_ |
OLD | NEW |