// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_MEMORY_PRESSURE_SYSTEM_MEMORY_PRESSURE_EVALUATOR_H_ #define COMPONENTS_MEMORY_PRESSURE_SYSTEM_MEMORY_PRESSURE_EVALUATOR_H_ #include "base/memory/memory_pressure_listener.h" #include "base/time/time.h" #include "components/memory_pressure/memory_pressure_voter.h" #include "components/memory_pressure/multi_source_memory_pressure_monitor.h" namespace memory_pressure { // Base class for the platform SystemMemoryPressureEvaluators, which use // MemoryPressureVoters to cast their vote on the overall MemoryPressureLevel. class SystemMemoryPressureEvaluator { … }; } // namespace memory_pressure #endif // COMPONENTS_MEMORY_PRESSURE_SYSTEM_MEMORY_PRESSURE_EVALUATOR_H_