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

Unified Diff: third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp

Issue 2392343005: Reflow comments in core/css (Closed)
Patch Set: Revert clang-format 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/css/CSSCrossfadeValue.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp b/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp
index e496ab1334b9b5cda9a3bcfd4bd4b495acb04a68..7f75fae7f98bbf972e808b5fab7c96e7c0313a80 100644
--- a/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp
+++ b/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp
@@ -75,7 +75,8 @@ static ImageResource* cachedImageForCSSValue(CSSValue* value,
if (value->isImageGeneratorValue()) {
toCSSImageGeneratorValue(value)->loadSubimages(document);
- // FIXME: Handle CSSImageGeneratorValue (and thus cross-fades with gradients and canvas).
+ // FIXME: Handle CSSImageGeneratorValue (and thus cross-fades with gradients
+ // and canvas).
return nullptr;
}
@@ -171,8 +172,9 @@ IntSize CSSCrossfadeValue::fixedSize(const LayoutObject& layoutObject,
toImageSize = roundedIntSize(
toSVGImage(toImage)->concreteObjectSize(defaultObjectSize));
- // Rounding issues can cause transitions between images of equal size to return
- // a different fixed size; avoid performing the interpolation if the images are the same size.
+ // Rounding issues can cause transitions between images of equal size to
+ // return a different fixed size; avoid performing the interpolation if the
+ // images are the same size.
if (fromImageSize == toImageSize)
return fromImageSize;

Powered by Google App Engine
This is Rietveld 408576698