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

Unified Diff: third_party/WebKit/Source/core/dom/ElementData.cpp

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
Index: third_party/WebKit/Source/core/dom/ElementData.cpp
diff --git a/third_party/WebKit/Source/core/dom/ElementData.cpp b/third_party/WebKit/Source/core/dom/ElementData.cpp
index 5cb199793b8fd6dbe37b4f435261d569b7986512..7e8038af65502b5c265891c263b736d5d7a0488d 100644
--- a/third_party/WebKit/Source/core/dom/ElementData.cpp
+++ b/third_party/WebKit/Source/core/dom/ElementData.cpp
@@ -73,7 +73,8 @@ ElementData::ElementData(const ElementData& other, bool isUnique)
m_animatedSVGAttributesAreDirty(other.m_animatedSVGAttributesAreDirty),
m_classNames(other.m_classNames),
m_idForStyleResolution(other.m_idForStyleResolution) {
- // NOTE: The inline style is copied by the subclass copy constructor since we don't know what to do with it here.
+ // NOTE: The inline style is copied by the subclass copy constructor since we
+ // don't know what to do with it here.
}
void ElementData::finalizeGarbageCollectedObject() {
@@ -159,7 +160,8 @@ UniqueElementData::UniqueElementData(const UniqueElementData& other)
UniqueElementData::UniqueElementData(const ShareableElementData& other)
: ElementData(other, true) {
- // An ShareableElementData should never have a mutable inline StylePropertySet attached.
+ // An ShareableElementData should never have a mutable inline StylePropertySet
+ // attached.
DCHECK(!other.m_inlineStyle || !other.m_inlineStyle->isMutable());
m_inlineStyle = other.m_inlineStyle;
« no previous file with comments | « third_party/WebKit/Source/core/dom/ElementData.h ('k') | third_party/WebKit/Source/core/dom/ElementTraversal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698