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

Side by Side Diff: Source/core/rendering/style/RenderStyle.h

Issue 337113005: Reduce forward declarations in core/rendering (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 97
98 using std::max; 98 using std::max;
99 99
100 class FilterOperations; 100 class FilterOperations;
101 101
102 class AppliedTextDecoration; 102 class AppliedTextDecoration;
103 class BorderData; 103 class BorderData;
104 class CounterContent; 104 class CounterContent;
105 class Font; 105 class Font;
106 class FontMetrics; 106 class FontMetrics;
107 class IntRect;
108 class Pair;
109 class ShadowList; 107 class ShadowList;
110 class StyleImage; 108 class StyleImage;
111 class StyleInheritedData; 109 class StyleInheritedData;
112 class StyleResolver; 110 class StyleResolver;
113 class TransformationMatrix; 111 class TransformationMatrix;
114 112
115 class ContentData; 113 class ContentData;
116 114
117 typedef Vector<RefPtr<RenderStyle>, 4> PseudoStyleCache; 115 typedef Vector<RefPtr<RenderStyle>, 4> PseudoStyleCache;
118 116
(...skipping 1771 matching lines...) Expand 10 before | Expand all | Expand 10 after
1890 inline bool RenderStyle::hasPseudoElementStyle() const 1888 inline bool RenderStyle::hasPseudoElementStyle() const
1891 { 1889 {
1892 return noninherited_flags._pseudoBits & PSEUDO_ELEMENT_MASK; 1890 return noninherited_flags._pseudoBits & PSEUDO_ELEMENT_MASK;
1893 } 1891 }
1894 1892
1895 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect ::Radii&); 1893 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect ::Radii&);
1896 1894
1897 } // namespace WebCore 1895 } // namespace WebCore
1898 1896
1899 #endif // RenderStyle_h 1897 #endif // RenderStyle_h
OLDNEW
« no previous file with comments | « Source/core/rendering/style/KeyframeList.h ('k') | Source/core/rendering/style/SVGRenderStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698