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

Side by Side Diff: Source/core/rendering/style/SVGRenderStyleDefs.cpp

Issue 15447002: Remove ~1750 superfluous includes from core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase a few hours 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
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 2004, 2005, 2007 Rob Buis <buis@kde.org> 3 2004, 2005, 2007 Rob Buis <buis@kde.org>
4 Copyright (C) Research In Motion Limited 2010. All rights reserved. 4 Copyright (C) Research In Motion Limited 2010. All rights reserved.
5 5
6 Based on khtml code by: 6 Based on khtml code by:
7 Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) 7 Copyright (C) 1999 Antti Koivisto (koivisto@kde.org)
8 Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org) 8 Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org)
9 Copyright (C) 2002-2003 Dirk Mueller (mueller@kde.org) 9 Copyright (C) 2002-2003 Dirk Mueller (mueller@kde.org)
10 Copyright (C) 2002 Apple Computer, Inc. 10 Copyright (C) 2002 Apple Computer, Inc.
(...skipping 12 matching lines...) Expand all
23 along with this library; see the file COPYING.LIB. If not, write to 23 along with this library; see the file COPYING.LIB. If not, write to
24 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 24 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 Boston, MA 02110-1301, USA. 25 Boston, MA 02110-1301, USA.
26 */ 26 */
27 27
28 #include "config.h" 28 #include "config.h"
29 29
30 #if ENABLE(SVG) 30 #if ENABLE(SVG)
31 #include "core/rendering/style/SVGRenderStyleDefs.h" 31 #include "core/rendering/style/SVGRenderStyleDefs.h"
32 32
33 #include "core/rendering/style/RenderStyle.h"
34 #include "core/rendering/style/SVGRenderStyle.h" 33 #include "core/rendering/style/SVGRenderStyle.h"
35 34
36 namespace WebCore { 35 namespace WebCore {
37 36
38 StyleFillData::StyleFillData() 37 StyleFillData::StyleFillData()
39 : opacity(SVGRenderStyle::initialFillOpacity()) 38 : opacity(SVGRenderStyle::initialFillOpacity())
40 , paintType(SVGRenderStyle::initialFillPaintType()) 39 , paintType(SVGRenderStyle::initialFillPaintType())
41 , paintColor(SVGRenderStyle::initialFillPaintColor()) 40 , paintColor(SVGRenderStyle::initialFillPaintColor())
42 , paintUri(SVGRenderStyle::initialFillPaintUri()) 41 , paintUri(SVGRenderStyle::initialFillPaintUri())
43 , visitedLinkPaintType(SVGRenderStyle::initialStrokePaintType()) 42 , visitedLinkPaintType(SVGRenderStyle::initialStrokePaintType())
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 bool StyleInheritedResourceData::operator==(const StyleInheritedResourceData& ot her) const 233 bool StyleInheritedResourceData::operator==(const StyleInheritedResourceData& ot her) const
235 { 234 {
236 return markerStart == other.markerStart 235 return markerStart == other.markerStart
237 && markerMid == other.markerMid 236 && markerMid == other.markerMid
238 && markerEnd == other.markerEnd; 237 && markerEnd == other.markerEnd;
239 } 238 }
240 239
241 } 240 }
242 241
243 #endif // ENABLE(SVG) 242 #endif // ENABLE(SVG)
OLDNEW
« no previous file with comments | « Source/core/rendering/style/SVGRenderStyle.cpp ('k') | Source/core/rendering/style/StyleFilterData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698