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

Side by Side Diff: Source/core/rendering/svg/RenderSVGImage.cpp

Issue 14519003: Absolutify paths to dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testrunner Created 7 years, 8 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 | Annotate | Revision Log
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 10 matching lines...) Expand all
21 * along with this library; see the file COPYING.LIB. If not, write to 21 * along with this library; see the file COPYING.LIB. If not, write to
22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 * Boston, MA 02110-1301, USA. 23 * Boston, MA 02110-1301, USA.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 27
28 #if ENABLE(SVG) 28 #if ENABLE(SVG)
29 #include "core/rendering/svg/RenderSVGImage.h" 29 #include "core/rendering/svg/RenderSVGImage.h"
30 30
31 #include "Attr.h"
32 #include "SVGImageElement.h" 31 #include "SVGImageElement.h"
33 #include "SVGLength.h" 32 #include "SVGLength.h"
34 #include "SVGPreserveAspectRatio.h" 33 #include "SVGPreserveAspectRatio.h"
34 #include "core/dom/Attr.h"
35 #include "core/platform/FloatConversion.h" 35 #include "core/platform/FloatConversion.h"
36 #include "core/platform/graphics/FloatQuad.h" 36 #include "core/platform/graphics/FloatQuad.h"
37 #include "core/platform/graphics/GraphicsContext.h" 37 #include "core/platform/graphics/GraphicsContext.h"
38 #include "core/rendering/LayoutRepainter.h" 38 #include "core/rendering/LayoutRepainter.h"
39 #include "core/rendering/PointerEventsHitRules.h" 39 #include "core/rendering/PointerEventsHitRules.h"
40 #include "core/rendering/RenderImageResource.h" 40 #include "core/rendering/RenderImageResource.h"
41 #include "core/rendering/RenderLayer.h" 41 #include "core/rendering/RenderLayer.h"
42 #include "core/rendering/svg/RenderSVGResourceContainer.h" 42 #include "core/rendering/svg/RenderSVGResourceContainer.h"
43 #include "core/rendering/svg/RenderSVGResourceFilter.h" 43 #include "core/rendering/svg/RenderSVGResourceFilter.h"
44 #include "core/rendering/svg/SVGRenderingContext.h" 44 #include "core/rendering/svg/SVGRenderingContext.h"
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 { 210 {
211 // this is called from paint() after the localTransform has already been app lied 211 // this is called from paint() after the localTransform has already been app lied
212 IntRect contentRect = enclosingIntRect(repaintRectInLocalCoordinates()); 212 IntRect contentRect = enclosingIntRect(repaintRectInLocalCoordinates());
213 if (!contentRect.isEmpty()) 213 if (!contentRect.isEmpty())
214 rects.append(contentRect); 214 rects.append(contentRect);
215 } 215 }
216 216
217 } // namespace WebCore 217 } // namespace WebCore
218 218
219 #endif // ENABLE(SVG) 219 #endif // ENABLE(SVG)
OLDNEW
« no previous file with comments | « Source/core/rendering/style/StyleRareNonInheritedData.cpp ('k') | Source/core/rendering/svg/RenderSVGResourceMasker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698