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

Unified Diff: third_party/WebKit/Source/platform/transforms/PerspectiveTransformOperation.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
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/transforms/Rotation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/transforms/PerspectiveTransformOperation.cpp
diff --git a/third_party/WebKit/Source/platform/transforms/PerspectiveTransformOperation.cpp b/third_party/WebKit/Source/platform/transforms/PerspectiveTransformOperation.cpp
index 10f7693d45ec379a2c2ad46af0d29d8d54c16c87..039224118b2b69b297c092c592fe06b1c931b3d3 100644
--- a/third_party/WebKit/Source/platform/transforms/PerspectiveTransformOperation.cpp
+++ b/third_party/WebKit/Source/platform/transforms/PerspectiveTransformOperation.cpp
@@ -38,9 +38,8 @@ PassRefPtr<TransformOperation> PerspectiveTransformOperation::blend(
return this;
if (blendToIdentity) {
- double p = blink::blend(
- m_p, 1.,
- progress); // FIXME: this seems wrong. https://bugs.webkit.org/show_bug.cgi?id=52700
+ // FIXME: this seems wrong. https://bugs.webkit.org/show_bug.cgi?id=52700
+ double p = blink::blend(m_p, 1., progress);
return PerspectiveTransformOperation::create(clampTo<int>(p, 0));
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/transforms/Rotation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698