Bug 1038756: Callsites creating a channel in content/base/ImportManager (r=gkrizsanits)

This commit is contained in:
Christoph Kerschbaumer 2014-09-21 09:36:50 -07:00
Родитель a73c947cbb
Коммит 812edc7230
1 изменённых файлов: 7 добавлений и 4 удалений

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

@ -242,11 +242,14 @@ ImportLoader::Open()
nsCOMPtr<nsIChannel> channel;
rv = NS_NewChannel(getter_AddRefs(channel),
mURI,
/* ioService = */ nullptr,
mImportParent,
nsILoadInfo::SEC_NORMAL,
nsIContentPolicy::TYPE_SUBDOCUMENT,
channelPolicy,
loadGroup,
/* callbacks = */ nullptr,
nsIRequest::LOAD_BACKGROUND,
channelPolicy);
nullptr, // aCallbacks
nsIRequest::LOAD_BACKGROUND);
NS_ENSURE_SUCCESS_VOID(rv);
// Init CORSListenerProxy and omit credentials.