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

Unified Diff: third_party/WebKit/Source/core/animation/UnderlyingValueOwner.cpp

Issue 2384263003: Reflow comments in core/animation and subdirs (Closed)
Patch Set: 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/animation/UnderlyingValueOwner.cpp
diff --git a/third_party/WebKit/Source/core/animation/UnderlyingValueOwner.cpp b/third_party/WebKit/Source/core/animation/UnderlyingValueOwner.cpp
index 7c305b5e14dd409e18266bf89e41f733e2e8f9fc..f64758c6028db0ec7ca8b3aac4eb525ea6c49965 100644
--- a/third_party/WebKit/Source/core/animation/UnderlyingValueOwner.cpp
+++ b/third_party/WebKit/Source/core/animation/UnderlyingValueOwner.cpp
@@ -28,8 +28,9 @@ void UnderlyingValueOwner::set(const InterpolationType& type,
const InterpolationValue& value) {
DCHECK(value);
m_type = &type;
- // By clearing m_valueOwner we will perform a copy before attempting to mutate m_value,
- // thus upholding the const contract for this instance of interpolationValue.
+ // By clearing m_valueOwner we will perform a copy before attempting to mutate
+ // m_value, thus upholding the const contract for this instance of
+ // interpolationValue.
m_valueOwner.clear();
m_value = &value;
}

Powered by Google App Engine
This is Rietveld 408576698