| 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 18 matching lines...) Expand all Loading... |
| 29 #include "core/css/resolver/MatchResult.h" | 29 #include "core/css/resolver/MatchResult.h" |
| 30 #include "wtf/RefPtr.h" | 30 #include "wtf/RefPtr.h" |
| 31 #include "wtf/Vector.h" | 31 #include "wtf/Vector.h" |
| 32 | 32 |
| 33 namespace blink { | 33 namespace blink { |
| 34 | 34 |
| 35 class CSSStyleSheet; | 35 class CSSStyleSheet; |
| 36 class CSSRuleList; | 36 class CSSRuleList; |
| 37 class RuleData; | 37 class RuleData; |
| 38 class RuleSet; | 38 class RuleSet; |
| 39 class ScopedStyleResolver; | |
| 40 class SelectorFilter; | 39 class SelectorFilter; |
| 41 class StaticCSSRuleList; | 40 class StaticCSSRuleList; |
| 42 | 41 |
| 43 typedef unsigned CascadeScope; | 42 typedef unsigned CascadeScope; |
| 44 typedef unsigned CascadeOrder; | 43 typedef unsigned CascadeOrder; |
| 45 | 44 |
| 46 const CascadeScope ignoreCascadeScope = 0; | 45 const CascadeScope ignoreCascadeScope = 0; |
| 47 const CascadeOrder ignoreCascadeOrder = 0; | 46 const CascadeOrder ignoreCascadeOrder = 0; |
| 48 | 47 |
| 49 class MatchedRule { | 48 class MatchedRule { |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 | 171 |
| 173 // Output. | 172 // Output. |
| 174 RefPtrWillBeMember<StaticCSSRuleList> m_cssRuleList; | 173 RefPtrWillBeMember<StaticCSSRuleList> m_cssRuleList; |
| 175 RefPtrWillBeMember<StyleRuleList> m_styleRuleList; | 174 RefPtrWillBeMember<StyleRuleList> m_styleRuleList; |
| 176 MatchResult m_result; | 175 MatchResult m_result; |
| 177 }; | 176 }; |
| 178 | 177 |
| 179 } // namespace blink | 178 } // namespace blink |
| 180 | 179 |
| 181 #endif // ElementRuleCollector_h | 180 #endif // ElementRuleCollector_h |
| OLD | NEW |