OLD | NEW |
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, |
(...skipping 14 matching lines...) Expand all Loading... |
25 #include "core/CSSPropertyNames.h" | 25 #include "core/CSSPropertyNames.h" |
26 | 26 |
27 #include "core/css/CSSSVGDocumentValue.h" | 27 #include "core/css/CSSSVGDocumentValue.h" |
28 #include "core/css/CSSToLengthConversionData.h" | 28 #include "core/css/CSSToLengthConversionData.h" |
29 #include "core/css/resolver/CSSToStyleMap.h" | 29 #include "core/css/resolver/CSSToStyleMap.h" |
30 #include "core/css/resolver/ElementResolveContext.h" | 30 #include "core/css/resolver/ElementResolveContext.h" |
31 #include "core/css/resolver/ElementStyleResources.h" | 31 #include "core/css/resolver/ElementStyleResources.h" |
32 #include "core/css/resolver/FontBuilder.h" | 32 #include "core/css/resolver/FontBuilder.h" |
33 #include "core/dom/Document.h" | 33 #include "core/dom/Document.h" |
34 #include "core/dom/Element.h" | 34 #include "core/dom/Element.h" |
35 #include "core/layout/style/CachedUAStyle.h" | 35 #include "core/style/CachedUAStyle.h" |
36 #include "core/layout/style/ComputedStyle.h" | 36 #include "core/style/ComputedStyle.h" |
37 #include "core/layout/style/StyleInheritedData.h" | 37 #include "core/style/StyleInheritedData.h" |
38 | 38 |
39 namespace blink { | 39 namespace blink { |
40 | 40 |
41 class CSSAnimationUpdate; | 41 class CSSAnimationUpdate; |
42 class FontDescription; | 42 class FontDescription; |
43 | 43 |
44 class StyleResolverState { | 44 class StyleResolverState { |
45 STACK_ALLOCATED(); | 45 STACK_ALLOCATED(); |
46 WTF_MAKE_NONCOPYABLE(StyleResolverState); | 46 WTF_MAKE_NONCOPYABLE(StyleResolverState); |
47 public: | 47 public: |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 FontBuilder m_fontBuilder; | 176 FontBuilder m_fontBuilder; |
177 | 177 |
178 OwnPtr<CachedUAStyle> m_cachedUAStyle; | 178 OwnPtr<CachedUAStyle> m_cachedUAStyle; |
179 | 179 |
180 ElementStyleResources m_elementStyleResources; | 180 ElementStyleResources m_elementStyleResources; |
181 }; | 181 }; |
182 | 182 |
183 } // namespace blink | 183 } // namespace blink |
184 | 184 |
185 #endif // StyleResolverState_h | 185 #endif // StyleResolverState_h |
OLD | NEW |