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

Side by Side Diff: base/memory/memory_coordinator_client.h

Issue 2311723002: Move memory_coordinator_client and its registry to base/memory (Closed)
Patch Set: comment 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 unified diff | Download patch
« no previous file with comments | « base/BUILD.gn ('k') | base/memory/memory_coordinator_client_registry.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
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 {
11
12 // MemoryState represents status of a process.
dcheng 2016/09/15 00:19:19 Btw, not sure if you want to update these comments
bashi 2016/09/15 00:28:13 Yeah, I'll update the comments to refer .mojom
bashi 2016/09/15 00:39:39 Moved comments from components/memory_coordinator/
13 enum class MemoryState {
14 // The state is unknown.
15 UNKNOWN = -1,
16 // Not encountering memory constrains.
17 NORMAL = 0,
18 // Running and interactive but allocations may be limited.
19 THROTTLED = 1,
20 // Still in resident memory but its core processing logic has been suspended.
21 SUSPENDED = 2,
22 };
23
24 // This is an interface for components which can respond to memory status
25 // changes.
26 class BASE_EXPORT MemoryCoordinatorClient {
27 public:
28 virtual ~MemoryCoordinatorClient() {}
29
30 // Called when memory state has changed.
31 virtual void OnMemoryStateChange(MemoryState state) = 0;
32 };
33
34 } // namespace base
35
36 #endif // BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | base/memory/memory_coordinator_client_registry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698