| 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 * |
| 11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
| 15 * | 15 * |
| 16 * You should have received a copy of the GNU Library General Public License | 16 * You should have received a copy of the GNU Library General Public License |
| 17 * along with this library; see the file COPYING.LIB. If not, write to | 17 * along with this library; see the file COPYING.LIB. If not, write to |
| 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
| 20 * | 20 * |
| 21 */ | 21 */ |
| 22 | 22 |
| 23 #ifndef StyleResolverState_h | 23 #ifndef StyleResolverState_h |
| 24 #define StyleResolverState_h | 24 #define StyleResolverState_h |
| 25 | 25 |
| 26 #include <memory> |
| 26 #include "core/CSSPropertyNames.h" | 27 #include "core/CSSPropertyNames.h" |
| 27 #include "core/CoreExport.h" | 28 #include "core/CoreExport.h" |
| 28 #include "core/animation/css/CSSAnimationUpdate.h" | 29 #include "core/animation/css/CSSAnimationUpdate.h" |
| 29 #include "core/css/CSSPendingSubstitutionValue.h" | 30 #include "core/css/CSSPendingSubstitutionValue.h" |
| 30 #include "core/css/CSSToLengthConversionData.h" | 31 #include "core/css/CSSToLengthConversionData.h" |
| 31 #include "core/css/resolver/CSSToStyleMap.h" | 32 #include "core/css/resolver/CSSToStyleMap.h" |
| 32 #include "core/css/resolver/ElementResolveContext.h" | 33 #include "core/css/resolver/ElementResolveContext.h" |
| 33 #include "core/css/resolver/ElementStyleResources.h" | 34 #include "core/css/resolver/ElementStyleResources.h" |
| 34 #include "core/css/resolver/FontBuilder.h" | 35 #include "core/css/resolver/FontBuilder.h" |
| 35 #include "core/dom/Document.h" | 36 #include "core/dom/Document.h" |
| 36 #include "core/dom/Element.h" | 37 #include "core/dom/Element.h" |
| 37 #include "core/style/CachedUAStyle.h" | 38 #include "core/style/CachedUAStyle.h" |
| 38 #include "core/style/ComputedStyle.h" | 39 #include "core/style/ComputedStyle.h" |
| 39 #include "core/style/StyleInheritedData.h" | 40 #include "core/style/StyleInheritedData.h" |
| 40 #include <memory> | |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 | 43 |
| 44 class FontDescription; | 44 class FontDescription; |
| 45 | 45 |
| 46 class CORE_EXPORT StyleResolverState { | 46 class CORE_EXPORT StyleResolverState { |
| 47 STACK_ALLOCATED(); | 47 STACK_ALLOCATED(); |
| 48 WTF_MAKE_NONCOPYABLE(StyleResolverState); | 48 WTF_MAKE_NONCOPYABLE(StyleResolverState); |
| 49 | 49 |
| 50 public: | 50 public: |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 | 236 |
| 237 mutable HeapHashMap< | 237 mutable HeapHashMap< |
| 238 Member<const CSSPendingSubstitutionValue>, | 238 Member<const CSSPendingSubstitutionValue>, |
| 239 Member<HeapHashMap<CSSPropertyID, Member<const CSSValue>>>> | 239 Member<HeapHashMap<CSSPropertyID, Member<const CSSValue>>>> |
| 240 m_parsedPropertiesForPendingSubstitutionCache; | 240 m_parsedPropertiesForPendingSubstitutionCache; |
| 241 }; | 241 }; |
| 242 | 242 |
| 243 } // namespace blink | 243 } // namespace blink |
| 244 | 244 |
| 245 #endif // StyleResolverState_h | 245 #endif // StyleResolverState_h |
| OLD | NEW |