Bug 1477213 - Remove now-empty shallow sizes. r=gfritzsche

Depends On D2928

Differential Revision: https://phabricator.services.mozilla.com/D2929

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Jan-Erik Rediger 2018-08-27 14:26:51 +00:00
parent d42b22c11a
commit b86463d4c7
3 changed files with 0 additions and 14 deletions

View File

@ -227,10 +227,6 @@ TelemetryImpl::CollectReports(nsIHandleReportCallback* aHandleReport,
COLLECT_REPORT("explicit/telemetry/impl", aMallocSizeOf(this),
"Memory used by the Telemetry core implemenation");
COLLECT_REPORT("explicit/telemetry/histogram/shallow",
TelemetryHistogram::GetMapShallowSizesOfExcludingThis(aMallocSizeOf),
"Memory used by the Telemetry Histogram implementation");
COLLECT_REPORT("explicit/telemetry/scalar/shallow",
TelemetryScalar::GetMapShallowSizesOfExcludingThis(aMallocSizeOf),
"Memory used by the Telemetry Scalar implemenation");

View File

@ -2557,13 +2557,6 @@ TelemetryHistogram::GetKeyedHistogramSnapshots(JSContext* aCx,
return NS_OK;
}
size_t
TelemetryHistogram::GetMapShallowSizesOfExcludingThis(mozilla::MallocSizeOf
aMallocSizeOf)
{
return 0;
}
size_t
TelemetryHistogram::GetHistogramSizesOfIncludingThis(mozilla::MallocSizeOf
aMallocSizeOf)

View File

@ -76,9 +76,6 @@ nsresult
GetKeyedHistogramSnapshots(JSContext *aCx, JS::MutableHandleValue aResult, unsigned int aDataset,
bool aClearSubsession);
size_t
GetMapShallowSizesOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf);
size_t
GetHistogramSizesOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf);