Bug 1055728 - Only issue "can't retarget to off-main thread" warning on parent. r=hsivonen

This commit is contained in:
Jason Duell
2014-10-31 17:50:04 -07:00
parent f18027a4be
commit b94cf57d8f

View File

@@ -944,7 +944,11 @@ nsHtml5StreamParser::OnStartRequest(nsIRequest* aRequest, nsISupports* aContext)
}
if (NS_FAILED(rv)) {
NS_WARNING("Failed to retarget HTML data delivery to the parser thread.");
// for now skip warning if we're on child process, since we don't support
// off-main thread delivery there yet. This will change with bug 1015466
if (XRE_GetProcessType() != GeckoProcessType_Content) {
NS_WARNING("Failed to retarget HTML data delivery to the parser thread.");
}
}
if (mCharsetSource == kCharsetFromParentFrame) {