Bug 1310139 - Add missing namespace qualifiers in nsHostObjectProtocolHandler. r=baku

MozReview-Commit-ID: KcdyoocM3Z9

--HG--
extra : rebase_source : 577ce2aa6c7aaf8473015652a1dede334d9eccb1
This commit is contained in:
Andreas Farre 2016-10-14 02:41:00 -04:00
Родитель 83bc1415dd
Коммит cd295fba64
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -33,6 +33,7 @@ using mozilla::dom::BlobImpl;
using mozilla::dom::MediaSource; using mozilla::dom::MediaSource;
using mozilla::ErrorResult; using mozilla::ErrorResult;
using mozilla::net::LoadInfo; using mozilla::net::LoadInfo;
using mozilla::Move;
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
// Hash table // Hash table
@ -615,7 +616,7 @@ nsHostObjectProtocolHandler::RemoveDataEntry(const nsACString& aUri,
} }
if (!info->mURIs.IsEmpty()) { if (!info->mURIs.IsEmpty()) {
ReleasingTimerHolder::Create(Move(info->mURIs)); mozilla::ReleasingTimerHolder::Create(Move(info->mURIs));
} }
gDataTable->Remove(aUri); gDataTable->Remove(aUri);