Bug 1265275 - Replaced using namespace mozilla; & using namespace mozilla::dom; with namespace mozilla{..} & namespace dom{..} in PresentationChild.cpp. r=smaug

Differential Revision: https://phabricator.services.mozilla.com/D86709
This commit is contained in:
pctopgs 2020-08-12 14:09:49 +00:00
Родитель b8de5629f2
Коммит 6ce79b0cb4
1 изменённых файлов: 5 добавлений и 2 удалений

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

@ -11,8 +11,8 @@
#include "PresentationIPCService.h"
#include "nsThreadUtils.h"
using namespace mozilla;
using namespace mozilla::dom;
namespace mozilla {
namespace dom {
/*
* Implementation of PresentationChild
@ -168,3 +168,6 @@ mozilla::ipc::IPCResult PresentationRequestChild::RecvNotifyRequestUrlSelected(
Unused << NS_WARN_IF(NS_FAILED(mCallback->NotifySuccess(aUrl)));
return IPC_OK();
}
} // namespace dom
} // namespace mozilla