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

Side by Side Diff: Source/core/css/resolver/StyleResolverState.h

Issue 15797004: Cleanup WebKit prefixed names for classes in css directory. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 * 19 *
20 */ 20 */
21 21
22 #ifndef StyleResolverState_h 22 #ifndef StyleResolverState_h
23 #define StyleResolverState_h 23 #define StyleResolverState_h
24 24
25 #include "CSSPropertyNames.h" 25 #include "CSSPropertyNames.h"
26 26
27 #include "core/css/CSSSVGDocumentValue.h"
27 #include "core/css/CSSValueList.h" 28 #include "core/css/CSSValueList.h"
28 #include "core/css/WebKitCSSSVGDocumentValue.h"
29 #include "core/dom/Element.h" 29 #include "core/dom/Element.h"
30 #include "core/platform/graphics/Color.h" 30 #include "core/platform/graphics/Color.h"
31 #include "core/platform/graphics/filters/FilterOperations.h" 31 #include "core/platform/graphics/filters/FilterOperations.h"
32 #include "core/rendering/style/BorderData.h" 32 #include "core/rendering/style/BorderData.h"
33 #include "core/rendering/style/FillLayer.h" 33 #include "core/rendering/style/FillLayer.h"
34 #include "core/rendering/style/RenderStyle.h" 34 #include "core/rendering/style/RenderStyle.h"
35 #include "core/rendering/style/StyleInheritedData.h" 35 #include "core/rendering/style/StyleInheritedData.h"
36 #include "wtf/HashMap.h" 36 #include "wtf/HashMap.h"
37 37
38 namespace WebCore { 38 namespace WebCore {
39 39
40 class FillLayer; 40 class FillLayer;
41 class FontDescription; 41 class FontDescription;
42 class RenderRegion; 42 class RenderRegion;
43 class StyledElement; 43 class StyledElement;
44 44
45 typedef HashMap<CSSPropertyID, RefPtr<CSSValue> > PendingImagePropertyMap; 45 typedef HashMap<CSSPropertyID, RefPtr<CSSValue> > PendingImagePropertyMap;
46 typedef HashMap<FilterOperation*, RefPtr<WebKitCSSSVGDocumentValue> > PendingSVG DocumentMap; 46 typedef HashMap<FilterOperation*, RefPtr<CSSSVGDocumentValue> > PendingSVGDocume ntMap;
47 47
48 class StyleResolverState { 48 class StyleResolverState {
49 WTF_MAKE_NONCOPYABLE(StyleResolverState); 49 WTF_MAKE_NONCOPYABLE(StyleResolverState);
50 public: 50 public:
51 StyleResolverState() 51 StyleResolverState()
52 : m_element(0) 52 : m_element(0)
53 , m_styledElement(0) 53 , m_styledElement(0)
54 , m_parentNode(0) 54 , m_parentNode(0)
55 , m_parentStyle(0) 55 , m_parentStyle(0)
56 , m_rootElementStyle(0) 56 , m_rootElementStyle(0)
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 152
153 bool m_hasUAAppearance; 153 bool m_hasUAAppearance;
154 BorderData m_borderData; 154 BorderData m_borderData;
155 FillLayer m_backgroundData; 155 FillLayer m_backgroundData;
156 Color m_backgroundColor; 156 Color m_backgroundColor;
157 }; 157 };
158 158
159 } // namespace WebCore 159 } // namespace WebCore
160 160
161 #endif // StyleResolverState_h 161 #endif // StyleResolverState_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698