| 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. | 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. |
| 4 * All rights reserved. | 4 * All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 #include "core/css/CSSPendingSubstitutionValue.h" | 29 #include "core/css/CSSPendingSubstitutionValue.h" |
| 30 #include "core/css/CSSToLengthConversionData.h" | 30 #include "core/css/CSSToLengthConversionData.h" |
| 31 #include "core/css/resolver/CSSToStyleMap.h" | 31 #include "core/css/resolver/CSSToStyleMap.h" |
| 32 #include "core/css/resolver/ElementResolveContext.h" | 32 #include "core/css/resolver/ElementResolveContext.h" |
| 33 #include "core/css/resolver/ElementStyleResources.h" | 33 #include "core/css/resolver/ElementStyleResources.h" |
| 34 #include "core/css/resolver/FontBuilder.h" | 34 #include "core/css/resolver/FontBuilder.h" |
| 35 #include "core/dom/Document.h" | 35 #include "core/dom/Document.h" |
| 36 #include "core/dom/Element.h" | 36 #include "core/dom/Element.h" |
| 37 #include "core/style/CachedUAStyle.h" | 37 #include "core/style/CachedUAStyle.h" |
| 38 #include "core/style/ComputedStyle.h" | 38 #include "core/style/ComputedStyle.h" |
| 39 #include "core/style/StyleInheritedData.h" | |
| 40 #include <memory> | 39 #include <memory> |
| 41 | 40 |
| 42 namespace blink { | 41 namespace blink { |
| 43 | 42 |
| 44 class FontDescription; | 43 class FontDescription; |
| 45 | 44 |
| 46 class CORE_EXPORT StyleResolverState { | 45 class CORE_EXPORT StyleResolverState { |
| 47 STACK_ALLOCATED(); | 46 STACK_ALLOCATED(); |
| 48 WTF_MAKE_NONCOPYABLE(StyleResolverState); | 47 WTF_MAKE_NONCOPYABLE(StyleResolverState); |
| 49 | 48 |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 | 252 |
| 254 mutable HeapHashMap< | 253 mutable HeapHashMap< |
| 255 Member<const CSSPendingSubstitutionValue>, | 254 Member<const CSSPendingSubstitutionValue>, |
| 256 Member<HeapHashMap<CSSPropertyID, Member<const CSSValue>>>> | 255 Member<HeapHashMap<CSSPropertyID, Member<const CSSValue>>>> |
| 257 parsed_properties_for_pending_substitution_cache_; | 256 parsed_properties_for_pending_substitution_cache_; |
| 258 }; | 257 }; |
| 259 | 258 |
| 260 } // namespace blink | 259 } // namespace blink |
| 261 | 260 |
| 262 #endif // StyleResolverState_h | 261 #endif // StyleResolverState_h |
| OLD | NEW |