| 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 25 matching lines...) Expand all Loading... |
| 36 #include "sky/engine/wtf/ListHashSet.h" | 36 #include "sky/engine/wtf/ListHashSet.h" |
| 37 #include "sky/engine/wtf/RefPtr.h" | 37 #include "sky/engine/wtf/RefPtr.h" |
| 38 #include "sky/engine/wtf/Vector.h" | 38 #include "sky/engine/wtf/Vector.h" |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class AnimatableValue; | 42 class AnimatableValue; |
| 43 class AnimationTimeline; | 43 class AnimationTimeline; |
| 44 class CSSAnimationUpdate; | 44 class CSSAnimationUpdate; |
| 45 class CSSFontSelector; | 45 class CSSFontSelector; |
| 46 class CSSRuleList; | |
| 47 class CSSSelector; | 46 class CSSSelector; |
| 48 class CSSStyleSheet; | 47 class CSSStyleSheet; |
| 49 class CSSValue; | 48 class CSSValue; |
| 50 class ContainerNode; | 49 class ContainerNode; |
| 51 class Document; | 50 class Document; |
| 52 class Element; | 51 class Element; |
| 53 class ElementRuleCollector; | 52 class ElementRuleCollector; |
| 54 class Interpolation; | 53 class Interpolation; |
| 55 class KeyframeList; | 54 class KeyframeList; |
| 56 class KeyframeValue; | 55 class KeyframeValue; |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 OwnPtr<StyleResolverStats> m_styleResolverStatsTotals; | 248 OwnPtr<StyleResolverStats> m_styleResolverStatsTotals; |
| 250 unsigned m_styleResolverStatsSequence; | 249 unsigned m_styleResolverStatsSequence; |
| 251 | 250 |
| 252 // Use only for Internals::updateStyleAndReturnAffectedElementCount. | 251 // Use only for Internals::updateStyleAndReturnAffectedElementCount. |
| 253 unsigned m_accessCount; | 252 unsigned m_accessCount; |
| 254 }; | 253 }; |
| 255 | 254 |
| 256 } // namespace blink | 255 } // namespace blink |
| 257 | 256 |
| 258 #endif // SKY_ENGINE_CORE_CSS_RESOLVER_STYLERESOLVER_H_ | 257 #endif // SKY_ENGINE_CORE_CSS_RESOLVER_STYLERESOLVER_H_ |
| OLD | NEW |