| 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 * |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 */ | 21 */ |
| 22 | 22 |
| 23 #ifndef ElementRuleCollector_h | 23 #ifndef ElementRuleCollector_h |
| 24 #define ElementRuleCollector_h | 24 #define ElementRuleCollector_h |
| 25 | 25 |
| 26 #include "core/css/PseudoStyleRequest.h" | 26 #include "core/css/PseudoStyleRequest.h" |
| 27 #include "core/css/SelectorChecker.h" | 27 #include "core/css/SelectorChecker.h" |
| 28 #include "core/css/resolver/ElementResolveContext.h" | 28 #include "core/css/resolver/ElementResolveContext.h" |
| 29 #include "core/css/resolver/MatchRequest.h" | 29 #include "core/css/resolver/MatchRequest.h" |
| 30 #include "core/css/resolver/MatchResult.h" | 30 #include "core/css/resolver/MatchResult.h" |
| 31 #include "wtf/RefCounted.h" | 31 #include "platform/wtf/RefCounted.h" |
| 32 #include "wtf/RefPtr.h" | 32 #include "platform/wtf/RefPtr.h" |
| 33 #include "wtf/Vector.h" | 33 #include "platform/wtf/Vector.h" |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 class CSSStyleSheet; | 37 class CSSStyleSheet; |
| 38 class CSSRuleList; | 38 class CSSRuleList; |
| 39 class RuleData; | 39 class RuleData; |
| 40 class RuleSet; | 40 class RuleSet; |
| 41 class SelectorFilter; | 41 class SelectorFilter; |
| 42 class StaticCSSRuleList; | 42 class StaticCSSRuleList; |
| 43 class StyleRuleUsageTracker; | 43 class StyleRuleUsageTracker; |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 | 182 |
| 183 // Output. | 183 // Output. |
| 184 Member<StaticCSSRuleList> css_rule_list_; | 184 Member<StaticCSSRuleList> css_rule_list_; |
| 185 Member<StyleRuleList> style_rule_list_; | 185 Member<StyleRuleList> style_rule_list_; |
| 186 MatchResult result_; | 186 MatchResult result_; |
| 187 }; | 187 }; |
| 188 | 188 |
| 189 } // namespace blink | 189 } // namespace blink |
| 190 | 190 |
| 191 #endif // ElementRuleCollector_h | 191 #endif // ElementRuleCollector_h |
| OLD | NEW |