blob: b8a5c236d43ea7944b3a15c6454791aedf9ae658 [file] [log] [blame]
// Copyright (c) 2015 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.
#include "third_party/blink/public/platform/web_memory_coordinator.h"
#include "third_party/blink/renderer/platform/memory_coordinator.h"
namespace blink {
void WebMemoryCoordinator::OnMemoryPressure(
WebMemoryPressureLevel pressure_level) {
MemoryCoordinator::Instance().OnMemoryPressure(pressure_level);
}
void WebMemoryCoordinator::OnMemoryStateChange(MemoryState state) {
MemoryCoordinator::Instance().OnMemoryStateChange(state);
}
void WebMemoryCoordinator::OnPurgeMemory() {
MemoryCoordinator::Instance().OnPurgeMemory();
}
} // namespace blink