mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 12:51:06 +00:00
Bug 1768189 - Part 45: Apply modernize-concat-nested-namespaces to dom/xhr/XMLHttpRequest.cpp ... r=andi
Depends on D145780 Differential Revision: https://phabricator.services.mozilla.com/D145781
This commit is contained in:
parent
63a0a64ec2
commit
f08333eddf
@ -10,8 +10,7 @@
|
||||
#include "mozilla/net/CookieJarSettings.h"
|
||||
#include "nsGlobalWindowInner.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
/* static */
|
||||
already_AddRefed<XMLHttpRequest> XMLHttpRequest::Constructor(
|
||||
@ -52,5 +51,4 @@ already_AddRefed<XMLHttpRequest> XMLHttpRequest::Constructor(
|
||||
return XMLHttpRequestWorker::Construct(aGlobal, aParams, aRv);
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -14,8 +14,7 @@
|
||||
|
||||
class nsIInputStream;
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
class Blob;
|
||||
class DOMString;
|
||||
@ -135,7 +134,6 @@ class XMLHttpRequest : public XMLHttpRequestEventTarget {
|
||||
: XMLHttpRequestEventTarget(aGlobalObject) {}
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // mozilla_dom_XMLHttpRequest_h
|
||||
|
@ -8,8 +8,7 @@
|
||||
|
||||
#include "mozilla/dom/DebuggerNotificationBinding.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
NS_IMPL_CYCLE_COLLECTION_CLASS(XMLHttpRequestEventTarget)
|
||||
|
||||
@ -36,5 +35,4 @@ void XMLHttpRequestEventTarget::DisconnectFromOwner() {
|
||||
DOMEventTargetHelper::DisconnectFromOwner();
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -9,8 +9,7 @@
|
||||
|
||||
#include "mozilla/DOMEventTargetHelper.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
class XMLHttpRequestEventTarget : public DOMEventTargetHelper {
|
||||
protected:
|
||||
@ -43,7 +42,6 @@ class XMLHttpRequestEventTarget : public DOMEventTargetHelper {
|
||||
virtual void DisconnectFromOwner() override;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // mozilla_dom_XMLHttpRequestEventTarget_h
|
||||
|
@ -112,8 +112,7 @@
|
||||
|
||||
using namespace mozilla::net;
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
// Maximum size that we'll grow an ArrayBuffer instead of doubling,
|
||||
// once doubling reaches this threshold
|
||||
@ -4158,5 +4157,4 @@ bool RequestHeaders::CharsetIterator::Next() {
|
||||
return true;
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -8,8 +8,7 @@
|
||||
#include "nsISupportsImpl.h"
|
||||
#include "mozilla/dom/DOMString.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
class XMLHttpRequestStringBuffer final {
|
||||
friend class XMLHttpRequestStringWriterHelper;
|
||||
@ -197,5 +196,4 @@ uint32_t XMLHttpRequestStringSnapshotReaderHelper::Length() const {
|
||||
return mBuffer->UnsafeLength();
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -10,8 +10,7 @@
|
||||
#include "mozilla/Mutex.h"
|
||||
#include "nsString.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
class ArrayBufferBuilder;
|
||||
class BlobImpl;
|
||||
@ -147,7 +146,6 @@ class MOZ_STACK_CLASS XMLHttpRequestStringSnapshotReaderHelper final {
|
||||
MutexAutoLock mLock;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // mozilla_dom_XMLHttpRequestString_h
|
||||
|
@ -7,8 +7,7 @@
|
||||
#include "XMLHttpRequestUpload.h"
|
||||
#include "mozilla/dom/XMLHttpRequestUploadBinding.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
NS_INTERFACE_MAP_BEGIN(XMLHttpRequestUpload)
|
||||
NS_INTERFACE_MAP_END_INHERITING(XMLHttpRequestEventTarget)
|
||||
@ -22,5 +21,4 @@ JSObject* XMLHttpRequestUpload::WrapObject(JSContext* aCx,
|
||||
return XMLHttpRequestUpload_Binding::Wrap(aCx, this, aGivenProto);
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -12,8 +12,7 @@
|
||||
// XXX Avoid including this here by moving function bodies to the cpp file
|
||||
#include "mozilla/EventListenerManager.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
class XMLHttpRequestUpload final : public XMLHttpRequestEventTarget {
|
||||
public:
|
||||
@ -33,7 +32,6 @@ class XMLHttpRequestUpload final : public XMLHttpRequestEventTarget {
|
||||
virtual ~XMLHttpRequestUpload() = default;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // mozilla_dom_XMLHttpRequestUpload_h
|
||||
|
@ -44,9 +44,7 @@
|
||||
|
||||
#include "mozilla/UniquePtr.h"
|
||||
|
||||
namespace mozilla {
|
||||
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
/**
|
||||
* XMLHttpRequest in workers
|
||||
@ -2247,5 +2245,4 @@ void XMLHttpRequestWorker::ResetResponseData() {
|
||||
mResponseJSONValue.setUndefined();
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -15,8 +15,7 @@
|
||||
// XXX Avoid including this here by moving function bodies to the cpp file
|
||||
#include "mozilla/dom/BlobImpl.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
class Proxy;
|
||||
class DOMString;
|
||||
@ -250,7 +249,6 @@ class XMLHttpRequestWorker final : public XMLHttpRequest {
|
||||
void ResetResponseData();
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // mozilla_dom_workers_xmlhttprequest_h__
|
||||
|
@ -8,8 +8,7 @@
|
||||
#include "mozilla/dom/CDATASectionBinding.h"
|
||||
#include "mozilla/IntegerPrintfMacros.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
CDATASection::~CDATASection() = default;
|
||||
|
||||
@ -50,5 +49,4 @@ void CDATASection::DumpContent(FILE* out, int32_t aIndent,
|
||||
bool aDumpAll) const {}
|
||||
#endif
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -10,8 +10,7 @@
|
||||
#include "mozilla/Attributes.h"
|
||||
#include "mozilla/dom/Text.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
class CDATASection final : public Text {
|
||||
private:
|
||||
@ -55,7 +54,6 @@ class CDATASection final : public Text {
|
||||
JS::Handle<JSObject*> aGivenProto) override;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // mozilla_dom_CDATASection_h
|
||||
|
@ -42,8 +42,7 @@ NS_NewXMLProcessingInstruction(nsNodeInfoManager* aNodeInfoManager,
|
||||
return instance.forget();
|
||||
}
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
ProcessingInstruction::ProcessingInstruction(
|
||||
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo,
|
||||
@ -105,5 +104,4 @@ void ProcessingInstruction::DumpContent(FILE* out, int32_t aIndent,
|
||||
bool aDumpAll) const {}
|
||||
#endif
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -192,8 +192,7 @@ nsresult NS_NewXMLDocument(Document** aInstancePtrResult, bool aLoadedAsData,
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
XMLDocument::XMLDocument(const char* aContentType)
|
||||
: Document(aContentType),
|
||||
@ -335,5 +334,4 @@ JSObject* XMLDocument::WrapNode(JSContext* aCx,
|
||||
return XMLDocument_Binding::Wrap(aCx, this, aGivenProto);
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -15,8 +15,7 @@
|
||||
class nsIURI;
|
||||
class nsIChannel;
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
class XMLDocument : public Document {
|
||||
public:
|
||||
@ -82,7 +81,6 @@ class XMLDocument : public Document {
|
||||
bool mSuppressParserErrorConsoleMessages;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // mozilla_dom_XMLDocument_h
|
||||
|
@ -11,8 +11,7 @@
|
||||
#include "nsContentUtils.h"
|
||||
#include "nsNetUtil.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
// nsISupports implementation
|
||||
|
||||
@ -155,5 +154,4 @@ XMLStylesheetProcessingInstruction::CloneDataNode(
|
||||
XMLStylesheetProcessingInstruction(ni.forget(), data));
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -13,8 +13,7 @@
|
||||
#include "mozilla/dom/ProcessingInstruction.h"
|
||||
#include "nsIURI.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
class XMLStylesheetProcessingInstruction final : public ProcessingInstruction,
|
||||
public LinkStyle {
|
||||
@ -80,7 +79,6 @@ class XMLStylesheetProcessingInstruction final : public ProcessingInstruction,
|
||||
mozilla::dom::NodeInfo* aNodeInfo, bool aCloneText) const final;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif // mozilla_dom_XMLStylesheetProcessingInstruction_h
|
||||
|
@ -11,11 +11,9 @@
|
||||
|
||||
class nsIURI;
|
||||
class nsIChannel;
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
class Document;
|
||||
}
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#define NS_IXMLCONTENT_SINK_IID \
|
||||
{ \
|
||||
|
@ -24,12 +24,10 @@ class nsIContent;
|
||||
class nsIParser;
|
||||
class nsTextNode;
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
class NodeInfo;
|
||||
class ProcessingInstruction;
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
enum XMLContentSinkState {
|
||||
eXMLContentSinkState_InProlog,
|
||||
|
@ -10,11 +10,9 @@
|
||||
|
||||
class nsINode;
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
class Document;
|
||||
}
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
/**
|
||||
* A utility class for URI handling
|
||||
|
@ -26,8 +26,7 @@
|
||||
#include "txIXPathContext.h"
|
||||
#include "txURIUtils.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
// txIParseContext implementation
|
||||
class XPathEvaluatorParseContext : public txIParseContext {
|
||||
@ -186,5 +185,4 @@ bool XPathEvaluatorParseContext::caseInsensitiveNameTests() {
|
||||
|
||||
void XPathEvaluatorParseContext::SetErrorOffset(uint32_t aOffset) {}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -19,8 +19,7 @@
|
||||
#include "txURIUtils.h"
|
||||
#include "txXPathTreeWalker.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
class EvalContextImpl : public txIEvalContext {
|
||||
public:
|
||||
@ -208,5 +207,4 @@ uint32_t EvalContextImpl::size() { return mContextSize; }
|
||||
|
||||
uint32_t EvalContextImpl::position() { return mContextPosition; }
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
@ -18,8 +18,7 @@ class Expr;
|
||||
class nsINode;
|
||||
class txResultRecycler;
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
class Document;
|
||||
class XPathResult;
|
||||
@ -64,7 +63,6 @@ class XPathExpression final : public NonRefcountedDOMObject {
|
||||
bool mCheckDocument;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
||||
#endif /* mozilla_dom_XPathExpression_h */
|
||||
|
@ -14,8 +14,7 @@
|
||||
#include "nsCycleCollectionParticipant.h"
|
||||
#include "mozilla/dom/XPathResultBinding.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
namespace mozilla::dom {
|
||||
|
||||
XPathResult::XPathResult(nsINode* aParent)
|
||||
: mParent(aParent),
|
||||
@ -263,5 +262,4 @@ already_AddRefed<XPathResult> XPathResult::Clone(ErrorResult& aError) {
|
||||
return do_AddRef(new XPathResult(*this));
|
||||
}
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
} // namespace mozilla::dom
|
||||
|
Loading…
Reference in New Issue
Block a user