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

Differential Revision: https://phabricator.services.mozilla.com/D85744
This commit is contained in:
pctopgs 2020-08-05 16:07:51 +00:00
parent b1627141d4
commit ce2278580f

View File

@ -21,8 +21,8 @@
#define BUFFER_SIZE 65536
using namespace mozilla;
using namespace mozilla::dom;
namespace mozilla {
namespace dom {
class CopierCallbacks final : public nsIRequestObserver {
public:
@ -548,3 +548,6 @@ PresentationTCPSessionTransport::OnDataAvailable(nsIRequest* aRequest,
// Pass the incoming data to the listener.
return mCallback->NotifyData(data, false);
}
} // namespace dom
} // namespace mozilla