Bug 1265275 - Removed 'using namespace mozilla;' and 'using namespace mozilla::dom;' and replaced them with namespace mozilla{...} and namespace dom{...} from PresentationCallbacks.cpp. r=smaug

smaug

Differential Revision: https://phabricator.services.mozilla.com/D81633
This commit is contained in:
pctopgs 2020-07-01 10:59:53 +00:00
parent 324ef940d6
commit 3a7a95eb97

View File

@ -16,8 +16,8 @@
#include "PresentationConnection.h"
#include "PresentationTransportBuilderConstructor.h"
using namespace mozilla;
using namespace mozilla::dom;
namespace mozilla {
namespace dom {
/*
* Implementation of PresentationRequesterCallback
@ -246,3 +246,6 @@ PresentationResponderLoadingCallback::OnContentBlockingEvent(
// Do nothing.
return NS_OK;
}
} // namespace dom
} // namespace mozilla