Index: components/memory_coordinator/public/interfaces/child_memory_coordinator.mojom |
diff --git a/components/memory_coordinator/public/interfaces/child_memory_coordinator.mojom b/components/memory_coordinator/public/interfaces/child_memory_coordinator.mojom |
deleted file mode 100644 |
index f54a3da2a2ed326ac53c29785c6e9d2ac9509bbc..0000000000000000000000000000000000000000 |
--- a/components/memory_coordinator/public/interfaces/child_memory_coordinator.mojom |
+++ /dev/null |
@@ -1,21 +0,0 @@ |
-// Copyright 2016 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-module memory_coordinator.mojom; |
- |
-enum MemoryState { |
- UNKNOWN = -1, |
- NORMAL = 0, |
- THROTTLED = 1, |
- SUSPENDED = 2, |
-}; |
- |
-// ChildMemoryCoordinator lives in a child process and receives memory events |
-// dispatched by the central memory coordinator which lives in the browser |
-// process. |
-interface ChildMemoryCoordinator { |
- // Called when the central memory coodinator changes the state for child |
- // processes. |
- OnStateChange(MemoryState state); |
-}; |