Bug 796938 - Switch to GetEntryDocument in GetDocumentCharacterSetForURI. r=smaug

This commit is contained in:
Bobby Holley 2014-08-19 12:02:06 -07:00
Родитель ad672126bf
Коммит 1ef0a34ad2
1 изменённых файлов: 2 добавлений и 9 удалений

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

@ -42,15 +42,8 @@ GetDocumentCharacterSetForURI(const nsAString& aHref, nsACString& aCharset)
{
aCharset.Truncate();
JSContext *cx = nsContentUtils::GetCurrentJSContext();
if (cx) {
nsCOMPtr<nsPIDOMWindow> window =
do_QueryInterface(nsJSUtils::GetDynamicScriptGlobal(cx));
NS_ENSURE_TRUE(window, NS_ERROR_FAILURE);
if (nsIDocument* doc = window->GetDoc()) {
aCharset = doc->GetDocumentCharacterSet();
}
if (nsIDocument* doc = GetEntryDocument()) {
aCharset = doc->GetDocumentCharacterSet();
}
return NS_OK;