| 54 | } |
| 55 | |
| 56 | std::string GetTextDescription() const override { |
| 57 | std::stringstream ss; |
| 58 | ss << GetName() << " doesn't support a text description."; |
| 59 | return ss.str(); |
| 60 | } |
| 61 | |
| 62 | Status RegisterMemoryMetrics(MetricGroup* metrics) override { |
| 63 | LibcMallocMetric::RESIDENT_SET_SIZE = metrics->RegisterMetric( |
no test coverage detected