icecat: add release icecat-140.10.1-1gnu1 for ecne

This commit is contained in:
Ark74 2026-05-04 16:58:41 -06:00
parent a5f93cb214
commit ff85d7c623
1256 changed files with 63469 additions and 24141 deletions

View file

@ -13,9 +13,6 @@
#include "mozilla/net/ChildDNSService.h"
#include "mozilla/net/CookieServiceChild.h"
#include "mozilla/net/DataChannelChild.h"
#ifdef MOZ_WIDGET_GTK
# include "mozilla/net/GIOChannelChild.h"
#endif
#include "mozilla/net/FileChannelChild.h"
#include "mozilla/net/WebSocketChannelChild.h"
#include "mozilla/net/WebSocketEventListenerChild.h"
@ -129,24 +126,6 @@ bool NeckoChild::DeallocPAltDataOutputStreamChild(
return true;
}
#ifdef MOZ_WIDGET_GTK
PGIOChannelChild* NeckoChild::AllocPGIOChannelChild(
PBrowserChild* aBrowser, const SerializedLoadContext& aSerialized,
const GIOChannelCreationArgs& aOpenArgs) {
// We don't allocate here: see GIOChannelChild::AsyncOpen()
MOZ_CRASH("AllocPGIOChannelChild should not be called");
return nullptr;
}
bool NeckoChild::DeallocPGIOChannelChild(PGIOChannelChild* channel) {
MOZ_ASSERT(IsNeckoChild(), "DeallocPGIOChannelChild called by non-child!");
GIOChannelChild* child = static_cast<GIOChannelChild*>(channel);
child->ReleaseIPDLReference();
return true;
}
#endif
PCookieServiceChild* NeckoChild::AllocPCookieServiceChild() {
// We don't allocate here: see CookieService::GetSingleton()
MOZ_ASSERT_UNREACHABLE("AllocPCookieServiceChild should not be called");