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

Side by Side Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp

Issue 2400783002: Reformat comments in core/layout/svg (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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> 2 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org>
3 * Copyright (C) 2006 Apple Computer, Inc. 3 * Copyright (C) 2006 Apple Computer, Inc.
4 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> 4 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org>
5 * Copyright (C) 2007, 2008, 2009 Rob Buis <buis@kde.org> 5 * Copyright (C) 2007, 2008, 2009 Rob Buis <buis@kde.org>
6 * Copyright (C) 2009 Google, Inc. 6 * Copyright (C) 2009 Google, Inc.
7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> 7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org>
8 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> 8 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com>
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 if (updateBoundingBox()) 193 if (updateBoundingBox())
194 setNeedsLayout(LayoutInvalidationReason::SizeChanged); 194 setNeedsLayout(LayoutInvalidationReason::SizeChanged);
195 } 195 }
196 196
197 setShouldDoFullPaintInvalidation(); 197 setShouldDoFullPaintInvalidation();
198 } 198 }
199 199
200 void LayoutSVGImage::addOutlineRects(Vector<LayoutRect>& rects, 200 void LayoutSVGImage::addOutlineRects(Vector<LayoutRect>& rects,
201 const LayoutPoint&, 201 const LayoutPoint&,
202 IncludeBlockVisualOverflowOrNot) const { 202 IncludeBlockVisualOverflowOrNot) const {
203 // this is called from paint() after the localTransform has already been appli ed 203 // this is called from paint() after the localTransform has already been
204 // applied
204 rects.append(LayoutRect(paintInvalidationRectInLocalSVGCoordinates())); 205 rects.append(LayoutRect(paintInvalidationRectInLocalSVGCoordinates()));
205 } 206 }
206 207
207 } // namespace blink 208 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698