gecko-dev/tools/profiler/public/GeckoProfilerReporter.h
Ehsan Akhgari 8a04849cee Bug 1362814 - Part 2: Move GeckoProfilerReporter to its own header; r=mstange
This allows us to get rid of the nsIMemoryReporter.h inclusion in GeckoProfiler.h.
That brings XPCOM string headers with it.
2017-05-12 02:35:09 -04:00

28 lines
731 B
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef GeckoProfilerReporter_h
#define GeckoProfilerReporter_h
#include "nsIMemoryReporter.h"
class GeckoProfilerReporter final : public nsIMemoryReporter
{
public:
NS_DECL_ISUPPORTS
GeckoProfilerReporter() {}
NS_IMETHOD
CollectReports(nsIHandleReportCallback* aHandleReport,
nsISupports* aData, bool aAnonymize) override;
private:
~GeckoProfilerReporter() {}
};
#endif