| 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 * Copyright (C) 2012 Google Inc. All rights reserved. | 4 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 | 58 |
| 59 public: | 59 public: |
| 60 const StyleRuleKeyframes* keyframeStylesForAnimation(const StringImpl* anima
tionName); | 60 const StyleRuleKeyframes* keyframeStylesForAnimation(const StringImpl* anima
tionName); |
| 61 void addKeyframeStyle(PassRefPtr<StyleRuleKeyframes>); | 61 void addKeyframeStyle(PassRefPtr<StyleRuleKeyframes>); |
| 62 | 62 |
| 63 void collectMatchingAuthorRules(ElementRuleCollector&, bool includeEmptyRule
s, bool applyAuthorStyles, CascadeScope, CascadeOrder = ignoreCascadeOrder); | 63 void collectMatchingAuthorRules(ElementRuleCollector&, bool includeEmptyRule
s, bool applyAuthorStyles, CascadeScope, CascadeOrder = ignoreCascadeOrder); |
| 64 void addRulesFromSheet(CSSStyleSheet*, const MediaQueryEvaluator&, StyleReso
lver*); | 64 void addRulesFromSheet(CSSStyleSheet*, const MediaQueryEvaluator&, StyleReso
lver*); |
| 65 void collectFeaturesTo(RuleFeatureSet&, HashSet<const StyleSheetContents*>&
visitedSharedStyleSheetContents) const; | 65 void collectFeaturesTo(RuleFeatureSet&, HashSet<const StyleSheetContents*>&
visitedSharedStyleSheetContents) const; |
| 66 void resetAuthorStyle(); | 66 void resetAuthorStyle(); |
| 67 | 67 |
| 68 void trace(Visitor*); | |
| 69 | |
| 70 private: | 68 private: |
| 71 explicit ScopedStyleResolver(TreeScope& scope) | 69 explicit ScopedStyleResolver(TreeScope& scope) |
| 72 : m_scope(scope) | 70 : m_scope(scope) |
| 73 { | 71 { |
| 74 } | 72 } |
| 75 | 73 |
| 76 RawPtr<TreeScope> m_scope; | 74 RawPtr<TreeScope> m_scope; |
| 77 | 75 |
| 78 Vector<RawPtr<CSSStyleSheet> > m_authorStyleSheets; | 76 Vector<RawPtr<CSSStyleSheet> > m_authorStyleSheets; |
| 79 | 77 |
| 80 typedef HashMap<const StringImpl*, RefPtr<StyleRuleKeyframes> > KeyframesRul
eMap; | 78 typedef HashMap<const StringImpl*, RefPtr<StyleRuleKeyframes> > KeyframesRul
eMap; |
| 81 KeyframesRuleMap m_keyframesRuleMap; | 79 KeyframesRuleMap m_keyframesRuleMap; |
| 82 }; | 80 }; |
| 83 | 81 |
| 84 } // namespace blink | 82 } // namespace blink |
| 85 | 83 |
| 86 #endif // ScopedStyleResolver_h | 84 #endif // ScopedStyleResolver_h |
| OLD | NEW |