| 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, | 
| 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 StyleResolver_h | 22 #ifndef StyleResolver_h | 
| 23 #define StyleResolver_h | 23 #define StyleResolver_h | 
| 24 | 24 | 
| 25 #include "core/animation/KeyframeEffectModel.h" |  | 
| 26 #include "core/css/PseudoStyleRequest.h" | 25 #include "core/css/PseudoStyleRequest.h" | 
| 27 #include "core/css/RuleFeature.h" | 26 #include "core/css/RuleFeature.h" | 
| 28 #include "core/css/RuleSet.h" | 27 #include "core/css/RuleSet.h" | 
| 29 #include "core/css/SelectorChecker.h" | 28 #include "core/css/SelectorChecker.h" | 
| 30 #include "core/css/SelectorFilter.h" | 29 #include "core/css/SelectorFilter.h" | 
| 31 #include "core/css/SiblingTraversalStrategies.h" | 30 #include "core/css/SiblingTraversalStrategies.h" | 
| 32 #include "core/css/TreeBoundaryCrossingRules.h" | 31 #include "core/css/TreeBoundaryCrossingRules.h" | 
| 33 #include "core/css/resolver/MatchedPropertiesCache.h" | 32 #include "core/css/resolver/MatchedPropertiesCache.h" | 
| 34 #include "core/css/resolver/ScopedStyleResolver.h" | 33 #include "core/css/resolver/ScopedStyleResolver.h" | 
| 35 #include "core/css/resolver/ScopedStyleTree.h" | 34 #include "core/css/resolver/ScopedStyleTree.h" | 
| 36 #include "core/css/resolver/StyleBuilder.h" | 35 #include "core/css/resolver/StyleBuilder.h" | 
| 37 #include "core/css/resolver/StyleResourceLoader.h" | 36 #include "core/css/resolver/StyleResourceLoader.h" | 
| 38 #include "platform/heap/Handle.h" | 37 #include "platform/heap/Handle.h" | 
| 39 #include "wtf/Deque.h" | 38 #include "wtf/Deque.h" | 
| 40 #include "wtf/HashMap.h" | 39 #include "wtf/HashMap.h" | 
| 41 #include "wtf/HashSet.h" | 40 #include "wtf/HashSet.h" | 
| 42 #include "wtf/ListHashSet.h" | 41 #include "wtf/ListHashSet.h" | 
| 43 #include "wtf/RefPtr.h" | 42 #include "wtf/RefPtr.h" | 
| 44 #include "wtf/Vector.h" | 43 #include "wtf/Vector.h" | 
| 45 | 44 | 
| 46 namespace WebCore { | 45 namespace WebCore { | 
| 47 | 46 | 
|  | 47 class AnimatableValue; | 
|  | 48 class AnimationTimeline; | 
| 48 class CSSAnimationUpdate; | 49 class CSSAnimationUpdate; | 
| 49 class CSSFontSelector; | 50 class CSSFontSelector; | 
| 50 class CSSRuleList; | 51 class CSSRuleList; | 
| 51 class CSSSelector; | 52 class CSSSelector; | 
| 52 class CSSStyleSheet; | 53 class CSSStyleSheet; | 
| 53 class CSSValue; | 54 class CSSValue; | 
| 54 class ContainerNode; | 55 class ContainerNode; | 
| 55 class Document; | 56 class Document; | 
| 56 class AnimationTimeline; |  | 
| 57 class Element; | 57 class Element; | 
| 58 class ElementRuleCollector; | 58 class ElementRuleCollector; | 
|  | 59 class Interpolation; | 
| 59 class KeyframeList; | 60 class KeyframeList; | 
| 60 class KeyframeValue; | 61 class KeyframeValue; | 
| 61 class MediaQueryEvaluator; | 62 class MediaQueryEvaluator; | 
| 62 class MediaQueryResult; | 63 class MediaQueryResult; | 
| 63 class RuleData; | 64 class RuleData; | 
| 64 class Settings; | 65 class Settings; | 
| 65 class StyleKeyframe; | 66 class StyleKeyframe; | 
| 66 class StylePropertySet; | 67 class StylePropertySet; | 
| 67 class StyleResolverStats; | 68 class StyleResolverStats; | 
| 68 class StyleRule; | 69 class StyleRule; | 
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 332     OwnPtr<StyleResolverStats> m_styleResolverStatsTotals; | 333     OwnPtr<StyleResolverStats> m_styleResolverStatsTotals; | 
| 333     unsigned m_styleResolverStatsSequence; | 334     unsigned m_styleResolverStatsSequence; | 
| 334 | 335 | 
| 335     // Use only for Internals::updateStyleAndReturnAffectedElementCount. | 336     // Use only for Internals::updateStyleAndReturnAffectedElementCount. | 
| 336     unsigned m_accessCount; | 337     unsigned m_accessCount; | 
| 337 }; | 338 }; | 
| 338 | 339 | 
| 339 } // namespace WebCore | 340 } // namespace WebCore | 
| 340 | 341 | 
| 341 #endif // StyleResolver_h | 342 #endif // StyleResolver_h | 
| OLD | NEW | 
|---|