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

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

Issue 15072003: Move StyleResolver and related classes to core/css/resolver (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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/svg/SVGMaskElement.cpp ('k') | no next file » | 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 12 matching lines...) Expand all
23 */ 23 */
24 24
25 #include "config.h" 25 #include "config.h"
26 26
27 #if ENABLE(SVG) 27 #if ENABLE(SVG)
28 #include "core/svg/SVGUseElement.h" 28 #include "core/svg/SVGUseElement.h"
29 29
30 #include "HTMLNames.h" 30 #include "HTMLNames.h"
31 #include "SVGNames.h" 31 #include "SVGNames.h"
32 #include "XLinkNames.h" 32 #include "XLinkNames.h"
33 #include "core/css/StyleResolver.h" 33 #include "core/css/resolver/StyleResolver.h"
34 #include "core/dom/Attribute.h" 34 #include "core/dom/Attribute.h"
35 #include "core/dom/Document.h" 35 #include "core/dom/Document.h"
36 #include "core/dom/ElementShadow.h" 36 #include "core/dom/ElementShadow.h"
37 #include "core/dom/Event.h" 37 #include "core/dom/Event.h"
38 #include "core/dom/EventListener.h" 38 #include "core/dom/EventListener.h"
39 #include "core/dom/NodeRenderStyle.h" 39 #include "core/dom/NodeRenderStyle.h"
40 #include "core/dom/NodeTraversal.h" 40 #include "core/dom/NodeTraversal.h"
41 #include "core/dom/RegisteredEventListener.h" 41 #include "core/dom/RegisteredEventListener.h"
42 #include "core/dom/ShadowRoot.h" 42 #include "core/dom/ShadowRoot.h"
43 #include "core/loader/cache/CachedResourceLoader.h" 43 #include "core/loader/cache/CachedResourceLoader.h"
(...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after
1004 m_cachedDocument->removeClient(this); 1004 m_cachedDocument->removeClient(this);
1005 1005
1006 m_cachedDocument = cachedDocument; 1006 m_cachedDocument = cachedDocument;
1007 if (m_cachedDocument) 1007 if (m_cachedDocument)
1008 m_cachedDocument->addClient(this); 1008 m_cachedDocument->addClient(this);
1009 } 1009 }
1010 1010
1011 } 1011 }
1012 1012
1013 #endif // ENABLE(SVG) 1013 #endif // ENABLE(SVG)
OLDNEW
« no previous file with comments | « Source/core/svg/SVGMaskElement.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698