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 BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ | 5 #ifndef BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ |
6 #define BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ | 6 #define BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ |
7 | 7 |
8 #include "base/base_export.h" | 8 #include "base/base_export.h" |
9 | 9 |
10 namespace base { | 10 namespace base { |
11 | 11 |
12 // OVERVIEW: | |
13 // | |
14 // MemoryCoordinatorClient is an interface which a component can implement to | |
15 // respond to memory state changes. Unlike MemoryPressureListener, this is a | |
16 // stateful mechanism and clients that receive notifications only when memory | |
chrisha
2016/09/26 14:10:45
clients receive
(remove "that")
bashi
2016/09/26 23:08:10
Done.
| |
17 // states are changed. State transitions are throttled to avoid thrashing; the | |
18 // exact throttling period is platform dependent, but will be at least 5-10 | |
19 // seconds. | |
chrisha
2016/09/26 14:10:45
Mention that clients are expected to make changes
Ryan Sleevi
2016/09/26 15:05:17
Interesting. So to confirm - if a memory state is
bashi
2016/09/26 23:08:10
Done.
| |
20 | |
12 // MemoryState is an indicator that processes can use to guide their memory | 21 // MemoryState is an indicator that processes can use to guide their memory |
13 // allocation policies. For example, a process that receives the suspended | 22 // allocation policies. For example, a process that receives the suspended |
14 // state can use that as as signal to drop memory caches. | 23 // state can use that as as signal to drop memory caches. |
15 enum class MemoryState { | 24 enum class MemoryState { |
16 // The state is unknown. | 25 // The state is unknown. |
17 UNKNOWN = -1, | 26 UNKNOWN = -1, |
18 // No memory constraints. | 27 // No memory constraints. |
19 NORMAL = 0, | 28 NORMAL = 0, |
20 // Running and interactive but allocation should be throttled. | 29 // Running and interactive but allocation should be throttled. |
chrisha
2016/09/26 14:10:45
The client should free up any memory that is used
bashi
2016/09/26 23:08:10
Done.
| |
21 THROTTLED = 1, | 30 THROTTLED = 1, |
22 // Still resident in memory but core processing logic has been suspended. | 31 // Still resident in memory but core processing logic has been suspended. |
chrisha
2016/09/26 14:10:45
The client should free up any memory that is used
bashi
2016/09/26 23:08:10
Done.
| |
23 SUSPENDED = 2, | 32 SUSPENDED = 2, |
24 }; | 33 }; |
25 | 34 |
26 // This is an interface for components which can respond to memory status | 35 // This is an interface for components which can respond to memory status |
27 // changes. | 36 // changes. An initial state is NORMAL. See MemoryCoordinatorClientRegistry for |
37 // threading guarantees and ownership management. | |
28 class BASE_EXPORT MemoryCoordinatorClient { | 38 class BASE_EXPORT MemoryCoordinatorClient { |
29 public: | 39 public: |
30 virtual ~MemoryCoordinatorClient() {} | 40 virtual ~MemoryCoordinatorClient() {} |
31 | 41 |
32 // Called when memory state has changed. | 42 // Called when memory state has changed. Any transition can occur except for |
43 // UNKNOWN. General guidelines are: | |
44 // * NORMAL: Restore the default settings for memory allocation/usage if | |
45 // it has changed. | |
46 // * THROTTLED: Use smaller limits for memory allocations and caches. | |
47 // * SUSPENDED: Purge memory. | |
33 virtual void OnMemoryStateChange(MemoryState state) = 0; | 48 virtual void OnMemoryStateChange(MemoryState state) = 0; |
34 }; | 49 }; |
35 | 50 |
36 } // namespace base | 51 } // namespace base |
37 | 52 |
38 #endif // BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ | 53 #endif // BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ |
OLD | NEW |