Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_MEMORY_COORDINATOR_CHILD_CHILD_MEMORY_COORDINATOR_IMPL_H_ | 5 #ifndef COMPONENTS_MEMORY_COORDINATOR_CHILD_CHILD_MEMORY_COORDINATOR_IMPL_H_ |
| 6 #define COMPONENTS_MEMORY_COORDINATOR_CHILD_CHILD_MEMORY_COORDINATOR_IMPL_H_ | 6 #define COMPONENTS_MEMORY_COORDINATOR_CHILD_CHILD_MEMORY_COORDINATOR_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/observer_list_threadsafe.h" | 9 #include "base/observer_list_threadsafe.h" |
| 10 #include "components/memory_coordinator/common/memory_coordinator_client.h" | 10 #include "components/memory_coordinator/common/memory_coordinator_client.h" |
| 11 #include "components/memory_coordinator/common/memory_coordinator_features.h" | |
| 11 #include "components/memory_coordinator/public/interfaces/child_memory_coordinat or.mojom.h" | 12 #include "components/memory_coordinator/public/interfaces/child_memory_coordinat or.mojom.h" |
| 12 #include "mojo/public/cpp/bindings/strong_binding.h" | 13 #include "mojo/public/cpp/bindings/binding.h" |
| 13 | 14 |
| 14 namespace memory_coordinator { | 15 namespace memory_coordinator { |
| 15 | 16 |
| 16 // ChildMemoryCoordinatorImpl is the implementation of ChildMemoryCoordinator. | 17 // ChildMemoryCoordinatorImpl is the implementation of ChildMemoryCoordinator. |
| 17 // It lives in child processes and is responsible for dispatching memory events | 18 // It lives in child processes and is responsible for dispatching memory events |
| 18 // to its clients. | 19 // to its clients. |
| 19 class ChildMemoryCoordinatorImpl | 20 class ChildMemoryCoordinatorImpl |
| 20 : NON_EXPORTED_BASE(public mojom::ChildMemoryCoordinator) { | 21 : NON_EXPORTED_BASE(public mojom::ChildMemoryCoordinator) { |
| 21 public: | 22 public: |
| 22 using ClientList = base::ObserverListThreadSafe<MemoryCoordinatorClient>; | 23 ChildMemoryCoordinatorImpl(); |
| 23 ChildMemoryCoordinatorImpl( | |
| 24 mojo::InterfaceRequest<mojom::ChildMemoryCoordinator> request, | |
| 25 scoped_refptr<ClientList> clients); | |
| 26 ~ChildMemoryCoordinatorImpl() override; | 24 ~ChildMemoryCoordinatorImpl() override; |
| 27 | 25 |
| 26 void Bind(mojom::ChildMemoryCoordinatorRequest request); | |
| 27 | |
| 28 // Reigsters/unregisters a client. Does not take ownership of client. | |
|
chrisha
2016/07/07 02:53:43
Registers*
bashi
2016/07/07 03:25:21
Done.
| |
| 29 void RegisterClient(MemoryCoordinatorClient* client); | |
| 30 void UnregisterClient(MemoryCoordinatorClient* client); | |
| 31 | |
| 28 // mojom::ChildMemoryCoordinator implementations: | 32 // mojom::ChildMemoryCoordinator implementations: |
| 29 void OnStateChange(mojom::MemoryState state) override; | 33 void OnStateChange(mojom::MemoryState state) override; |
| 34 void GetCurrentState(const GetCurrentStateCallback& callback) override; | |
| 30 | 35 |
| 31 private: | 36 private: |
| 32 mojo::StrongBinding<mojom::ChildMemoryCoordinator> binding_; | 37 friend class ChildMemoryCoordinatorImplTest; |
| 38 | |
| 39 mojo::Binding<mojom::ChildMemoryCoordinator> binding_; | |
| 40 using ClientList = base::ObserverListThreadSafe<MemoryCoordinatorClient>; | |
| 33 scoped_refptr<ClientList> clients_; | 41 scoped_refptr<ClientList> clients_; |
| 42 mojom::MemoryState state_ = mojom::MemoryState::UNKNOWN; | |
| 34 | 43 |
| 35 DISALLOW_COPY_AND_ASSIGN(ChildMemoryCoordinatorImpl); | 44 DISALLOW_COPY_AND_ASSIGN(ChildMemoryCoordinatorImpl); |
| 36 }; | 45 }; |
| 37 | 46 |
| 38 } // namespace content | 47 } // namespace content |
| 39 | 48 |
| 40 #endif // COMPONENTS_MEMORY_COORDINATOR_CHILD_CHILD_MEMORY_COORDINATOR_IMPL_H_ | 49 #endif // COMPONENTS_MEMORY_COORDINATOR_CHILD_CHILD_MEMORY_COORDINATOR_IMPL_H_ |
| OLD | NEW |