| 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 26 matching lines...) Expand all Loading... |
| 37 #include "wtf/Deque.h" | 37 #include "wtf/Deque.h" |
| 38 #include "wtf/HashMap.h" | 38 #include "wtf/HashMap.h" |
| 39 #include "wtf/HashSet.h" | 39 #include "wtf/HashSet.h" |
| 40 #include "wtf/ListHashSet.h" | 40 #include "wtf/ListHashSet.h" |
| 41 #include "wtf/RefPtr.h" | 41 #include "wtf/RefPtr.h" |
| 42 #include "wtf/Vector.h" | 42 #include "wtf/Vector.h" |
| 43 | 43 |
| 44 namespace blink { | 44 namespace blink { |
| 45 | 45 |
| 46 class AnimatableValue; | 46 class AnimatableValue; |
| 47 class AnimationTimeline; | |
| 48 class CSSAnimationUpdate; | |
| 49 class CSSFontSelector; | |
| 50 class CSSRuleList; | 47 class CSSRuleList; |
| 51 class CSSSelector; | |
| 52 class CSSStyleSheet; | 48 class CSSStyleSheet; |
| 53 class CSSValue; | 49 class CSSValue; |
| 54 class ContainerNode; | 50 class ContainerNode; |
| 55 class Document; | 51 class Document; |
| 56 class Element; | 52 class Element; |
| 57 class ElementRuleCollector; | 53 class ElementRuleCollector; |
| 58 class Interpolation; | 54 class Interpolation; |
| 59 class KeyframeList; | |
| 60 class KeyframeValue; | |
| 61 class MediaQueryEvaluator; | 55 class MediaQueryEvaluator; |
| 62 class MediaQueryResult; | |
| 63 class RuleData; | 56 class RuleData; |
| 64 class Settings; | |
| 65 class StyleKeyframe; | 57 class StyleKeyframe; |
| 66 class StylePropertySet; | 58 class StylePropertySet; |
| 67 class StyleResolverStats; | 59 class StyleResolverStats; |
| 68 class StyleRule; | 60 class StyleRule; |
| 69 class StyleRuleKeyframes; | 61 class StyleRuleKeyframes; |
| 70 class StyleRulePage; | 62 class StyleRulePage; |
| 71 class ViewportStyleResolver; | 63 class ViewportStyleResolver; |
| 72 | 64 |
| 73 class MatchResult; | 65 class MatchResult; |
| 74 | 66 |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 OwnPtr<StyleResolverStats> m_styleResolverStatsTotals; | 305 OwnPtr<StyleResolverStats> m_styleResolverStatsTotals; |
| 314 unsigned m_styleResolverStatsSequence; | 306 unsigned m_styleResolverStatsSequence; |
| 315 | 307 |
| 316 // Use only for Internals::updateStyleAndReturnAffectedElementCount. | 308 // Use only for Internals::updateStyleAndReturnAffectedElementCount. |
| 317 unsigned m_accessCount; | 309 unsigned m_accessCount; |
| 318 }; | 310 }; |
| 319 | 311 |
| 320 } // namespace blink | 312 } // namespace blink |
| 321 | 313 |
| 322 #endif // StyleResolver_h | 314 #endif // StyleResolver_h |
| OLD | NEW |