Bug 1185478: Add leak checks to socket I/O classes

This commit is contained in:
Thomas Zimmermann
2015-07-21 08:06:29 +02:00
parent 5554162cc8
commit af69a2f294
21 changed files with 265 additions and 50 deletions

View File

@@ -5,15 +5,20 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "UnixSocketConnector.h"
#include "nsISupportsImpl.h" // for MOZ_COUNT_CTOR, MOZ_COUNT_DTOR
namespace mozilla {
namespace ipc {
UnixSocketConnector::UnixSocketConnector()
{ }
{
MOZ_COUNT_CTOR(UnixSocketConnector);
}
UnixSocketConnector::~UnixSocketConnector()
{ }
{
MOZ_COUNT_DTOR(UnixSocketConnector);
}
}
}