#ifndef SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_MEMORY_INSTRUMENTATION_BROWSER_METRICS_H_
#define SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_MEMORY_INSTRUMENTATION_BROWSER_METRICS_H_
#include <string>
#include "base/metrics/histogram_functions.h"
#include "build/build_config.h"
#define MEMORY_METRICS_HISTOGRAM_MB(name, value) …
namespace base {
class TimeDelta;
}
namespace memory_instrumentation {
extern const char kMemoryHistogramPrefix[];
enum class HistogramProcessType { … };
const char* HistogramProcessTypeToString(HistogramProcessType type);
std::string GetPrivateFootprintHistogramName(HistogramProcessType type);
base::TimeDelta GetDelayForNextMemoryLog();
}
#endif