Bug 1027251 - Address review comments on mtransport - r=abr

(Sorry about that!)
This commit is contained in:
Benoit Jacob 2014-06-21 00:09:48 -04:00
Родитель 9ab10590fc
Коммит 2ac8ed568a
5 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -17,6 +17,8 @@ namespace mozilla {
class DataBuffer;
// Temporary whitelist for refcounted class dangerously exposing its destructor.
// Filed bug 1028139 to address this class.
template<>
struct HasDangerousPublicDestructor<DataBuffer>
{

Просмотреть файл

@ -19,6 +19,7 @@
namespace mozilla {
class DtlsIdentity {
private:
~DtlsIdentity();
public:

Просмотреть файл

@ -61,6 +61,7 @@ namespace mozilla {
class NrIceResolver
{
private:
~NrIceResolver();
public:
NrIceResolver();

Просмотреть файл

@ -44,6 +44,8 @@ static size_t kStunMessageLen = sizeof(kStunMessage);
class DummySocket;
// Temporary whitelist for refcounted class dangerously exposing its destructor.
// Filed bug 1028140 to address this class.
namespace mozilla {
template<>
struct HasDangerousPublicDestructor<DummySocket>

Просмотреть файл

@ -38,6 +38,7 @@ MtransportTestUtils *test_utils;
namespace {
class Destructor {
private:
~Destructor() {
std::cerr << "Destructor called" << std::endl;
*destroyed_ = true;