#ifndef CHROME_BROWSER_UI_PERFORMANCE_CONTROLS_MEMORY_SAVER_UTILS_H_
#define CHROME_BROWSER_UI_PERFORMANCE_CONTROLS_MEMORY_SAVER_UTILS_H_
#include "chrome/browser/resource_coordinator/lifecycle_unit.h"
#include "content/public/browser/web_contents.h"
#include "url/gurl.h"
namespace memory_saver {
bool IsURLSupported(GURL url);
std::optional<::mojom::LifecycleUnitDiscardReason> GetDiscardReason(
content::WebContents* contents);
int64_t GetDiscardedMemorySavingsInBytes(content::WebContents* contents);
}
#endif