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 module memory_coordinator.mojom; | 5 #ifndef BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ |
| 6 #define BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ |
| 7 |
| 8 #include "base/base_export.h" |
| 9 |
| 10 namespace base { |
6 | 11 |
7 // MemoryState is an indicator that processes can use to guide their memory | 12 // MemoryState is an indicator that processes can use to guide their memory |
8 // allocation policies. For example, a process that receives the suspended | 13 // allocation policies. For example, a process that receives the suspended |
9 // state can use that as as signal to drop memory caches. | 14 // state can use that as as signal to drop memory caches. |
10 enum MemoryState { | 15 enum class MemoryState { |
11 // The state is unknown. | 16 // The state is unknown. |
12 UNKNOWN = -1, | 17 UNKNOWN = -1, |
13 // No memory constraints. | 18 // No memory constraints. |
14 NORMAL = 0, | 19 NORMAL = 0, |
15 // Running and interactive but allocation should be throttled. | 20 // Running and interactive but allocation should be throttled. |
16 THROTTLED = 1, | 21 THROTTLED = 1, |
17 // Still resident in memory but core processing logic has been suspended. | 22 // Still resident in memory but core processing logic has been suspended. |
18 SUSPENDED = 2, | 23 SUSPENDED = 2, |
19 }; | 24 }; |
20 | 25 |
21 // ChildMemoryCoordinator lives in a child process and receives memory events | 26 // This is an interface for components which can respond to memory status |
22 // dispatched by the central memory coordinator which lives in the browser | 27 // changes. |
23 // process. | 28 class BASE_EXPORT MemoryCoordinatorClient { |
24 interface ChildMemoryCoordinator { | 29 public: |
25 // Called when the central memory coodinator changes the state for child | 30 virtual ~MemoryCoordinatorClient() {} |
26 // processes. | 31 |
27 OnStateChange(MemoryState state); | 32 // Called when memory state has changed. |
| 33 virtual void OnMemoryStateChange(MemoryState state) = 0; |
28 }; | 34 }; |
| 35 |
| 36 } // namespace base |
| 37 |
| 38 #endif // BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ |
OLD | NEW |