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

Unified Diff: third_party/WebKit/Source/platform/transforms/TransformOperations.cpp

Issue 2392653002: reflow comments in platform/{transforms,weborigin} (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/platform/transforms/TransformOperations.cpp
diff --git a/third_party/WebKit/Source/platform/transforms/TransformOperations.cpp b/third_party/WebKit/Source/platform/transforms/TransformOperations.cpp
index e0025332ec33a606b1e0e3120b60dfd7ef7041d0..1f65fb6d661020ce676fee0a317f636fc25bc303 100644
--- a/third_party/WebKit/Source/platform/transforms/TransformOperations.cpp
+++ b/third_party/WebKit/Source/platform/transforms/TransformOperations.cpp
@@ -105,7 +105,8 @@ TransformOperations::blendByUsingMatrixInterpolation(
if (dependsOnBoxSize() || from.dependsOnBoxSize())
return InterpolatedTransformOperation::create(from, *this, progress);
- // Evaluate blended matrix here to avoid creating a nested data structure of unbounded depth.
+ // Evaluate blended matrix here to avoid creating a nested data structure of
+ // unbounded depth.
TransformationMatrix fromTransform;
TransformationMatrix toTransform;
from.apply(FloatSize(), fromTransform);
@@ -119,7 +120,8 @@ TransformOperations TransformOperations::blend(const TransformOperations& from,
if (from == *this || (!from.size() && !size()))
return *this;
- // If either list is empty, use blendByMatchingOperations which has special logic for this case.
+ // If either list is empty, use blendByMatchingOperations which has special
+ // logic for this case.
if (!from.size() || !size() || from.operationsMatch(*this))
return blendByMatchingOperations(from, progress);

Powered by Google App Engine
This is Rietveld 408576698