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

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

Issue 14476012: Absolutify paths to most subfolders of platform/graphics/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: iwyu 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) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2007, 2008, 2009 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2007, 2008, 2009 Rob Buis <buis@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. 5 * Copyright (C) 2009 Google, Inc.
6 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 27 matching lines...) Expand all
38 #include "RenderSVGResourceContainer.h" 38 #include "RenderSVGResourceContainer.h"
39 #include "RenderSVGResourceFilter.h" 39 #include "RenderSVGResourceFilter.h"
40 #include "RenderView.h" 40 #include "RenderView.h"
41 #include "SVGLength.h" 41 #include "SVGLength.h"
42 #include "SVGRenderingContext.h" 42 #include "SVGRenderingContext.h"
43 #include "SVGResources.h" 43 #include "SVGResources.h"
44 #include "SVGResourcesCache.h" 44 #include "SVGResourcesCache.h"
45 #include "SVGSVGElement.h" 45 #include "SVGSVGElement.h"
46 #include "SVGStyledElement.h" 46 #include "SVGStyledElement.h"
47 #include "SVGViewSpec.h" 47 #include "SVGViewSpec.h"
48 #include "TransformState.h"
49 #include "core/platform/graphics/GraphicsContext.h" 48 #include "core/platform/graphics/GraphicsContext.h"
49 #include "core/platform/graphics/transforms/TransformState.h"
50 50
51 using namespace std; 51 using namespace std;
52 52
53 namespace WebCore { 53 namespace WebCore {
54 54
55 RenderSVGRoot::RenderSVGRoot(SVGStyledElement* node) 55 RenderSVGRoot::RenderSVGRoot(SVGStyledElement* node)
56 : RenderReplaced(node) 56 : RenderReplaced(node)
57 , m_objectBoundingBoxValid(false) 57 , m_objectBoundingBoxValid(false)
58 , m_isLayoutSizeChanged(false) 58 , m_isLayoutSizeChanged(false)
59 , m_needsBoundariesOrTransformUpdate(true) 59 , m_needsBoundariesOrTransformUpdate(true)
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 while (svgRoot && !svgRoot->isSVGRoot()) 497 while (svgRoot && !svgRoot->isSVGRoot())
498 svgRoot = svgRoot->parent(); 498 svgRoot = svgRoot->parent();
499 if (!svgRoot) 499 if (!svgRoot)
500 return; 500 return;
501 toRenderSVGRoot(svgRoot)->m_resourcesNeedingToInvalidateClients.add(resource ); 501 toRenderSVGRoot(svgRoot)->m_resourcesNeedingToInvalidateClients.add(resource );
502 } 502 }
503 503
504 } 504 }
505 505
506 #endif // ENABLE(SVG) 506 #endif // ENABLE(SVG)
OLDNEW
« no previous file with comments | « Source/core/rendering/svg/RenderSVGResourcePattern.h ('k') | Source/core/rendering/svg/RenderSVGShape.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698