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

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

Issue 666143003: Remove includes of RenderSVGResource.h where it's not used (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/svg/SVGInlineTextBox.cpp ('k') | Source/core/svg/SVGGElement.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2008 Rob Buis <buis@kde.org> 2 * Copyright (C) 2007, 2008 Rob Buis <buis@kde.org>
3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org>
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
5 * Copyright (C) 2009 Google, Inc. All rights reserved. 5 * Copyright (C) 2009 Google, Inc. All rights reserved.
6 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> 6 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org>
7 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. 7 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 12 matching lines...) Expand all
23 */ 23 */
24 24
25 #include "config.h" 25 #include "config.h"
26 26
27 #include "core/rendering/svg/SVGRenderingContext.h" 27 #include "core/rendering/svg/SVGRenderingContext.h"
28 28
29 #include "core/frame/FrameHost.h" 29 #include "core/frame/FrameHost.h"
30 #include "core/paint/SVGImagePainter.h" 30 #include "core/paint/SVGImagePainter.h"
31 #include "core/rendering/RenderLayer.h" 31 #include "core/rendering/RenderLayer.h"
32 #include "core/rendering/svg/RenderSVGImage.h" 32 #include "core/rendering/svg/RenderSVGImage.h"
33 #include "core/rendering/svg/RenderSVGResource.h"
34 #include "core/rendering/svg/RenderSVGResourceFilter.h" 33 #include "core/rendering/svg/RenderSVGResourceFilter.h"
35 #include "core/rendering/svg/RenderSVGResourceMasker.h" 34 #include "core/rendering/svg/RenderSVGResourceMasker.h"
36 #include "core/rendering/svg/SVGRenderSupport.h" 35 #include "core/rendering/svg/SVGRenderSupport.h"
37 #include "core/rendering/svg/SVGResources.h" 36 #include "core/rendering/svg/SVGResources.h"
38 #include "core/rendering/svg/SVGResourcesCache.h" 37 #include "core/rendering/svg/SVGResourcesCache.h"
39 #include "platform/FloatConversion.h" 38 #include "platform/FloatConversion.h"
40 39
41 static int kMaxImageBufferSize = 4096; 40 static int kMaxImageBufferSize = 4096;
42 41
43 namespace blink { 42 namespace blink {
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 SVGImagePainter::paintForeground(toRenderSVGImage(*m_object), buffer edInfo); 288 SVGImagePainter::paintForeground(toRenderSVGImage(*m_object), buffer edInfo);
290 } else 289 } else
291 return false; 290 return false;
292 } 291 }
293 292
294 m_paintInfo->context->drawImageBuffer(imageBuffer.get(), boundingBox); 293 m_paintInfo->context->drawImageBuffer(imageBuffer.get(), boundingBox);
295 return true; 294 return true;
296 } 295 }
297 296
298 } // namespace blink 297 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/rendering/svg/SVGInlineTextBox.cpp ('k') | Source/core/svg/SVGGElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698