1
0
Fork 0
mirror of https://github.com/klzgrad/naiveproxy.git synced 2025-04-03 13:53:37 +03:00
naiveproxy/chromecast/common/mojom/memory_pressure.mojom
2018-08-14 22:19:20 +00:00

14 lines
444 B
Text

// Copyright 2017 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 chromecast.mojom;
interface MemoryPressureController {
AddObserver(MemoryPressureObserver observer);
};
interface MemoryPressureObserver {
// Levels defined in base::MemoryPressureListener::MemoryPressureLevel
MemoryPressureLevelChanged(int32 pressure_level);
};