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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/memory/memory_coordinator_client_registry.h
diff --git a/base/memory/memory_coordinator_client_registry.h b/base/memory/memory_coordinator_client_registry.h
new file mode 100644
index 0000000000000000000000000000000000000000..701abb8399639dfb058467edf22f2028945874b4
--- /dev/null
+++ b/base/memory/memory_coordinator_client_registry.h
@@ -0,0 +1,41 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef BASE_MEMORY_MEMORY_CLIENT_REGISTRY_H_
+#define BASE_MEMORY_MEMORY_CLIENT_REGISTRY_H_
+
+#include "base/base_export.h"
+#include "base/memory/memory_coordinator_client.h"
+#include "base/memory/singleton.h"
+#include "base/observer_list_threadsafe.h"
+
+namespace base {
+
+// MemoryCoordinatorClientRegistry is the registry for
+// MemoryCoordinatorClients. Callbacks of MemoryCoordinatorClient are called
+// via MemoryCoordinator.
+class BASE_EXPORT MemoryCoordinatorClientRegistry {
+ public:
+ static MemoryCoordinatorClientRegistry* GetInstance();
+
+ ~MemoryCoordinatorClientRegistry();
+
+ // Registers/unregisters a client. Does not take ownership of client.
+ void Register(MemoryCoordinatorClient* client);
+ void Unregister(MemoryCoordinatorClient* client);
+
+ using ClientList = ObserverListThreadSafe<MemoryCoordinatorClient>;
+ ClientList* clients() { return clients_.get(); }
+
+ private:
+ friend struct DefaultSingletonTraits<MemoryCoordinatorClientRegistry>;
+
+ MemoryCoordinatorClientRegistry();
+
+ scoped_refptr<ClientList> clients_;
+};
+
+} // namespace base
+
+#endif // BASE_MEMORY_MEMORY_CLIENT_REGISTRY_H_
« 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