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

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

Issue 2374003003: MemoryCoordinatorClient's destructor should be protected-virtual (Closed)
Patch Set: Created 4 years, 2 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 {
(...skipping 25 matching lines...) Expand all
36 // any memory whose contents can be reproduced when transitioning out of 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). 37 // the suspended state (e.g. parsed resource that can be reloaded from disk).
38 SUSPENDED = 2, 38 SUSPENDED = 2,
39 }; 39 };
40 40
41 // 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
42 // changes. An initial state is NORMAL. See MemoryCoordinatorClientRegistry for 42 // changes. An initial state is NORMAL. See MemoryCoordinatorClientRegistry for
43 // threading guarantees and ownership management. 43 // threading guarantees and ownership management.
44 class BASE_EXPORT MemoryCoordinatorClient { 44 class BASE_EXPORT MemoryCoordinatorClient {
45 public: 45 public:
46 virtual ~MemoryCoordinatorClient() {}
47
48 // Called when memory state has changed. Any transition can occur except for 46 // Called when memory state has changed. Any transition can occur except for
49 // UNKNOWN. General guidelines are: 47 // UNKNOWN. General guidelines are:
50 // * NORMAL: Restore the default settings for memory allocation/usage if 48 // * NORMAL: Restore the default settings for memory allocation/usage if
51 // it has changed. 49 // it has changed.
52 // * THROTTLED: Use smaller limits for memory allocations and caches. 50 // * THROTTLED: Use smaller limits for memory allocations and caches.
53 // * SUSPENDED: Purge memory. 51 // * SUSPENDED: Purge memory.
54 virtual void OnMemoryStateChange(MemoryState state) = 0; 52 virtual void OnMemoryStateChange(MemoryState state) = 0;
53
54 protected:
55 virtual ~MemoryCoordinatorClient() {}
55 }; 56 };
56 57
57 } // namespace base 58 } // namespace base
58 59
59 #endif // BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_ 60 #endif // BASE_MEMORY_MEMORY_COORDINATOR_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698