Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Unified Diff: third_party/WebKit/Source/core/dom/QualifiedName.h

Issue 2390543002: Reflow comments in core/dom/. (Closed)
Patch Set: Reformat comments in core/dom/. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/dom/PseudoElement.cpp ('k') | third_party/WebKit/Source/core/dom/Range.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/QualifiedName.h
diff --git a/third_party/WebKit/Source/core/dom/QualifiedName.h b/third_party/WebKit/Source/core/dom/QualifiedName.h
index fb9d0c21b4c214f84afda528780606e713cae4a3..918edaddbc64ea49ff1947d1f4bbe3217da5d9d3 100644
--- a/third_party/WebKit/Source/core/dom/QualifiedName.h
+++ b/third_party/WebKit/Source/core/dom/QualifiedName.h
@@ -37,8 +37,9 @@ struct QualifiedNameComponents {
StringImpl* m_namespace;
};
-// This struct is used to pass data between QualifiedName and the QNameTranslator.
-// For hashing and equality only the QualifiedNameComponents fields are used.
+// This struct is used to pass data between QualifiedName and the
+// QNameTranslator. For hashing and equality only the QualifiedNameComponents
+// fields are used.
struct QualifiedNameData {
DISALLOW_NEW();
QualifiedNameComponents m_components;
@@ -112,7 +113,8 @@ class CORE_EXPORT QualifiedName {
return *this;
}
- // Hash table deleted values, which are only constructed and never copied or destroyed.
+ // Hash table deleted values, which are only constructed and never copied or
+ // destroyed.
QualifiedName(WTF::HashTableDeletedValueType)
: m_impl(WTF::HashTableDeletedValue) {}
bool isHashTableDeletedValue() const {
@@ -160,14 +162,16 @@ class CORE_EXPORT QualifiedName {
static const QualifiedName& null();
- // The below methods are only for creating static global QNames that need no ref counting.
+ // The below methods are only for creating static global QNames that need no
+ // ref counting.
static void createStatic(void* targetAddress, StringImpl* name);
static void createStatic(void* targetAddress,
StringImpl* name,
const AtomicString& nameNamespace);
private:
- // This constructor is used only to create global/static QNames that don't require any ref counting.
+ // This constructor is used only to create global/static QNames that don't
+ // require any ref counting.
QualifiedName(const AtomicString& prefix,
const AtomicString& localName,
const AtomicString& namespaceURI,
« no previous file with comments | « third_party/WebKit/Source/core/dom/PseudoElement.cpp ('k') | third_party/WebKit/Source/core/dom/Range.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698