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

Unified Diff: base/memory/memory_coordinator_client.h

Issue 2374003003: MemoryCoordinatorClient's destructor should be protected-virtual (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/memory/memory_coordinator_client.h
diff --git a/base/memory/memory_coordinator_client.h b/base/memory/memory_coordinator_client.h
index 6e0ce6309eb1d52675cac7428db9cc77a6616f97..d63b17cc1f8b88779dfaa83b7a677529dbc37573 100644
--- a/base/memory/memory_coordinator_client.h
+++ b/base/memory/memory_coordinator_client.h
@@ -43,8 +43,6 @@ enum class MemoryState {
// threading guarantees and ownership management.
class BASE_EXPORT MemoryCoordinatorClient {
public:
- virtual ~MemoryCoordinatorClient() {}
-
// Called when memory state has changed. Any transition can occur except for
// UNKNOWN. General guidelines are:
// * NORMAL: Restore the default settings for memory allocation/usage if
@@ -52,6 +50,9 @@ class BASE_EXPORT MemoryCoordinatorClient {
// * THROTTLED: Use smaller limits for memory allocations and caches.
// * SUSPENDED: Purge memory.
virtual void OnMemoryStateChange(MemoryState state) = 0;
+
+protected:
+ virtual ~MemoryCoordinatorClient() {}
};
} // namespace base
« 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