Bug 1189668 - Expose GetUnfilteredUrl on InternalResponse. r=ehsan

This commit is contained in:
Bobby Holley 2015-09-18 13:41:56 -07:00
Родитель 55686feb97
Коммит 73f8a27244
1 изменённых файлов: 10 добавлений и 0 удалений

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

@ -82,6 +82,16 @@ public:
aURL.Assign(mURL);
}
void
GetUnfilteredUrl(nsCString& aURL) const
{
if (mWrappedResponse) {
return mWrappedResponse->GetUrl(aURL);
}
return GetUrl(aURL);
}
// SetUrl should only be called when the fragment has alredy been stripped
void
SetUrl(const nsACString& aURL)