2008-03-06 01:28:25 +00:00
|
|
|
|
|
|
|
#include "nsIMemoryReporter.h"
|
|
|
|
#include "nsCOMArray.h"
|
2010-12-15 17:47:16 +00:00
|
|
|
#include "mozilla/Mutex.h"
|
|
|
|
|
|
|
|
using mozilla::Mutex;
|
2008-03-06 01:28:25 +00:00
|
|
|
|
|
|
|
class nsMemoryReporterManager : public nsIMemoryReporterManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIMEMORYREPORTERMANAGER
|
|
|
|
|
2010-12-15 17:47:16 +00:00
|
|
|
nsMemoryReporterManager();
|
|
|
|
virtual ~nsMemoryReporterManager();
|
|
|
|
|
2008-03-06 01:28:25 +00:00
|
|
|
private:
|
|
|
|
nsCOMArray<nsIMemoryReporter> mReporters;
|
2010-12-15 17:47:16 +00:00
|
|
|
Mutex mMutex;
|
2008-03-06 01:28:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define NS_MEMORY_REPORTER_MANAGER_CID \
|
|
|
|
{ 0xfb97e4f5, 0x32dd, 0x497a, \
|
|
|
|
{ 0xba, 0xa2, 0x7d, 0x1e, 0x55, 0x7, 0x99, 0x10 } }
|