зеркало из https://github.com/mozilla/gecko-dev.git
Fix mobile build bustage. Some compilers still don't seem to like L-strings spread out over several lines. r=crowder
This commit is contained in:
Родитель
bb21a29da4
Коммит
2404744133
|
@ -2252,10 +2252,8 @@ nsXMLHttpRequest::Send(nsIVariant *aBody)
|
|||
do_GetService(NS_CONSOLESERVICE_CONTRACTID);
|
||||
if (consoleService) {
|
||||
consoleService->LogStringMessage(NS_LITERAL_STRING(
|
||||
"Http channel implementation doesn't support nsIUploadChannel2. "
|
||||
"An extension has supplied a non-functional http protocol handler. "
|
||||
"This will break behavior and in future releases not work at all.")
|
||||
.get());
|
||||
"Http channel implementation doesn't support nsIUploadChannel2. An extension has supplied a non-functional http protocol handler. This will break behavior and in future releases not work at all."
|
||||
).get());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -596,10 +596,8 @@ nsIOService::NewChannelFromURI(nsIURI *aURI, nsIChannel **result)
|
|||
do_GetService(NS_CONSOLESERVICE_CONTRACTID);
|
||||
if (consoleService) {
|
||||
consoleService->LogStringMessage(NS_LITERAL_STRING(
|
||||
"Http channel implementation doesn't support "
|
||||
"nsIUploadChannel2. An extension has supplied a "
|
||||
"non-functional http protocol handler. This will break "
|
||||
"behavior and in future releases not work at all.").get());
|
||||
"Http channel implementation doesn't support nsIUploadChannel2. An extension has supplied a non-functional http protocol handler. This will break behavior and in future releases not work at all."
|
||||
).get());
|
||||
}
|
||||
gHasWarnedUploadChannel2 = PR_TRUE;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче