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

Side by Side Diff: Source/core/svg/SVGUseElement.cpp

Issue 14358030: Absolutify paths to history/, xml/parser/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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
« no previous file with comments | « Source/core/page/Settings.cpp ('k') | Source/core/testing/Internals.cpp » ('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) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde .org> 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde .org>
3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org>
4 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. 4 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved.
5 * Copyright (C) 2011 Torch Mobile (Beijing) Co. Ltd. All rights reserved. 5 * Copyright (C) 2011 Torch Mobile (Beijing) Co. Ltd. All rights reserved.
6 * Copyright (C) 2012 University of Szeged 6 * Copyright (C) 2012 University of Szeged
7 * Copyright (C) 2012 Renata Hodovan <reni@webkit.org> 7 * Copyright (C) 2012 Renata Hodovan <reni@webkit.org>
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 30 matching lines...) Expand all
41 #include "SVGElementRareData.h" 41 #include "SVGElementRareData.h"
42 #include "SVGGElement.h" 42 #include "SVGGElement.h"
43 #include "SVGLengthContext.h" 43 #include "SVGLengthContext.h"
44 #include "SVGNames.h" 44 #include "SVGNames.h"
45 #include "SVGSMILElement.h" 45 #include "SVGSMILElement.h"
46 #include "SVGSVGElement.h" 46 #include "SVGSVGElement.h"
47 #include "SVGSymbolElement.h" 47 #include "SVGSymbolElement.h"
48 #include "ShadowRoot.h" 48 #include "ShadowRoot.h"
49 #include "StyleResolver.h" 49 #include "StyleResolver.h"
50 #include "XLinkNames.h" 50 #include "XLinkNames.h"
51 #include "XMLDocumentParser.h"
52 #include "XMLSerializer.h" 51 #include "XMLSerializer.h"
53 #include "core/loader/cache/CachedResourceLoader.h" 52 #include "core/loader/cache/CachedResourceLoader.h"
54 #include "core/loader/cache/CachedResourceRequest.h" 53 #include "core/loader/cache/CachedResourceRequest.h"
55 #include "core/loader/cache/CachedSVGDocument.h" 54 #include "core/loader/cache/CachedSVGDocument.h"
56 #include "core/rendering/svg/RenderSVGResource.h" 55 #include "core/rendering/svg/RenderSVGResource.h"
57 #include "core/rendering/svg/RenderSVGTransformableContainer.h" 56 #include "core/rendering/svg/RenderSVGTransformableContainer.h"
57 #include "core/xml/parser/XMLDocumentParser.h"
58 58
59 // Dump SVGElementInstance object tree - useful to debug instanceRoot problems 59 // Dump SVGElementInstance object tree - useful to debug instanceRoot problems
60 // #define DUMP_INSTANCE_TREE 60 // #define DUMP_INSTANCE_TREE
61 61
62 // Dump the deep-expanded shadow tree (where the renderers are built from) 62 // Dump the deep-expanded shadow tree (where the renderers are built from)
63 // #define DUMP_SHADOW_TREE 63 // #define DUMP_SHADOW_TREE
64 64
65 namespace WebCore { 65 namespace WebCore {
66 66
67 // Animated property definitions 67 // Animated property definitions
(...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after
1005 m_cachedDocument->removeClient(this); 1005 m_cachedDocument->removeClient(this);
1006 1006
1007 m_cachedDocument = cachedDocument; 1007 m_cachedDocument = cachedDocument;
1008 if (m_cachedDocument) 1008 if (m_cachedDocument)
1009 m_cachedDocument->addClient(this); 1009 m_cachedDocument->addClient(this);
1010 } 1010 }
1011 1011
1012 } 1012 }
1013 1013
1014 #endif // ENABLE(SVG) 1014 #endif // ENABLE(SVG)
OLDNEW
« no previous file with comments | « Source/core/page/Settings.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698