Bug 936801 - use forward declaration for NetAddr instead of include DNS.h. r=mcmanus.

This commit is contained in:
Shih-Chiang Chien 2013-11-12 13:54:17 +01:00
Родитель cdb7ea39f2
Коммит 6e2bf838f8
2 изменённых файлов: 10 добавлений и 2 удалений

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

@ -8,7 +8,11 @@
interface nsIUDPSocketInternal;
%{ C++
#include "mozilla/net/DNS.h"
namespace mozilla {
namespace net {
union NetAddr;
}
}
%}
native NetAddr(mozilla::net::NetAddr);
[ptr] native NetAddrPtr(mozilla::net::NetAddr);

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

@ -7,7 +7,11 @@
#include "nsISupports.idl"
%{ C++
#include "mozilla/net/DNS.h"
namespace mozilla {
namespace net {
union NetAddr;
}
}
%}
native NetAddr(mozilla::net::NetAddr);