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

Side by Side Diff: Source/core/css/SVGCSSStyleSelector.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/css/RuleSet.cpp ('k') | Source/core/css/ScopedStyleResolver.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) 2005 Apple Computer, Inc. 2 Copyright (C) 2005 Apple Computer, Inc.
3 Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> 3 Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org>
4 2004, 2005, 2008 Rob Buis <buis@kde.org> 4 2004, 2005, 2008 Rob Buis <buis@kde.org>
5 Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 5 Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
6 6
7 Based on khtml css code by: 7 Based on khtml css code by:
8 Copyright(C) 1999-2003 Lars Knoll(knoll@kde.org) 8 Copyright(C) 1999-2003 Lars Knoll(knoll@kde.org)
9 (C) 2003 Apple Computer, Inc. 9 (C) 2003 Apple Computer, Inc.
10 (C) 2004 Allan Sandfeld Jensen(kde@carewolf.com) 10 (C) 2004 Allan Sandfeld Jensen(kde@carewolf.com)
(...skipping 11 matching lines...) Expand all
22 22
23 You should have received a copy of the GNU Library General Public License 23 You should have received a copy of the GNU Library General Public License
24 along with this library; see the file COPYING.LIB. If not, write to 24 along with this library; see the file COPYING.LIB. If not, write to
25 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 25 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 Boston, MA 02110-1301, USA. 26 Boston, MA 02110-1301, USA.
27 */ 27 */
28 28
29 #include "config.h" 29 #include "config.h"
30 30
31 #if ENABLE(SVG) 31 #if ENABLE(SVG)
32 #include "core/css/StyleResolver.h" 32 #include "core/css/resolver/StyleResolver.h"
33 33
34 #include <stdlib.h> 34 #include <stdlib.h>
35 #include "CSSPropertyNames.h" 35 #include "CSSPropertyNames.h"
36 #include "SVGNames.h" 36 #include "SVGNames.h"
37 #include "core/css/CSSPrimitiveValueMappings.h" 37 #include "core/css/CSSPrimitiveValueMappings.h"
38 #include "core/css/CSSValueList.h" 38 #include "core/css/CSSValueList.h"
39 #include "core/css/ShadowValue.h" 39 #include "core/css/ShadowValue.h"
40 #include "core/dom/Document.h" 40 #include "core/dom/Document.h"
41 #include "core/rendering/style/SVGRenderStyle.h" 41 #include "core/rendering/style/SVGRenderStyle.h"
42 #include "core/rendering/style/SVGRenderStyleDefs.h" 42 #include "core/rendering/style/SVGRenderStyleDefs.h"
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 // If you crash here, it's because you added a css property and are not handling it 608 // If you crash here, it's because you added a css property and are not handling it
609 // in either this switch statement or the one in StyleResolver::appl yProperty 609 // in either this switch statement or the one in StyleResolver::appl yProperty
610 ASSERT_WITH_MESSAGE(0, "unimplemented propertyID: %d", id); 610 ASSERT_WITH_MESSAGE(0, "unimplemented propertyID: %d", id);
611 return; 611 return;
612 } 612 }
613 } 613 }
614 614
615 } 615 }
616 616
617 #endif 617 #endif
OLDNEW
« no previous file with comments | « Source/core/css/RuleSet.cpp ('k') | Source/core/css/ScopedStyleResolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698