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 receive notifications only when memory states |
| 17 // are changed. State transitions are throttled to avoid thrashing; the exact |
| 18 // throttling period is platform dependent, but will be at least 5-10 seconds. |
| 19 // Clients are expected to make changes in memory usage that persist for the |
| 20 // duration of the memory state. |
| 21 |
12 // MemoryState is an indicator that processes can use to guide their memory | 22 // MemoryState is an indicator that processes can use to guide their memory |
13 // allocation policies. For example, a process that receives the suspended | 23 // allocation policies. For example, a process that receives the suspended |
14 // state can use that as as signal to drop memory caches. | 24 // state can use that as as signal to drop memory caches. |
15 enum class MemoryState { | 25 enum class MemoryState { |
16 // The state is unknown. | 26 // The state is unknown. |
17 UNKNOWN = -1, | 27 UNKNOWN = -1, |
18 // No memory constraints. | 28 // No memory constraints. |
19 NORMAL = 0, | 29 NORMAL = 0, |
20 // Running and interactive but allocation should be throttled. | 30 // Running and interactive but allocation should be throttled. |
| 31 // Clients should free up any memory that is used as an optimization but |
| 32 // that is not necessary for the process to run (e.g. caches). |
21 THROTTLED = 1, | 33 THROTTLED = 1, |
22 // Still resident in memory but core processing logic has been suspended. | 34 // Still resident in memory but core processing logic has been suspended. |
| 35 // Clients should free up any memory that is used as an optimization, or |
| 36 // any memory whose contents can be reproduced when transitioning out of |
| 37 // the suspended state (e.g. parsed resource that can be reloaded from disk). |
23 SUSPENDED = 2, | 38 SUSPENDED = 2, |
24 }; | 39 }; |
25 | 40 |
26 // This is an interface for components which can respond to memory status | 41 // This is an interface for components which can respond to memory status |
27 // changes. | 42 // changes. An initial state is NORMAL. See MemoryCoordinatorClientRegistry for |
| 43 // threading guarantees and ownership management. |
28 class BASE_EXPORT MemoryCoordinatorClient { | 44 class BASE_EXPORT MemoryCoordinatorClient { |
29 public: | 45 public: |
30 virtual ~MemoryCoordinatorClient() {} | 46 virtual ~MemoryCoordinatorClient() {} |
31 | 47 |
32 // Called when memory state has changed. | 48 // Called when memory state has changed. Any transition can occur except for |
| 49 // UNKNOWN. General guidelines are: |
| 50 // * NORMAL: Restore the default settings for memory allocation/usage if |
| 51 // it has changed. |
| 52 // * THROTTLED: Use smaller limits for memory allocations and caches. |
| 53 // * SUSPENDED: Purge memory. |
33 virtual void OnMemoryStateChange(MemoryState state) = 0; | 54 virtual void OnMemoryStateChange(MemoryState state) = 0; |
34 }; | 55 }; |
35 | 56 |
36 } // namespace base | 57 } // namespace base |
37 | 58 |
38 #endif // BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ | 59 #endif // BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ |
OLD | NEW |