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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 | 54 |
55 static TreeScope* treeScopeFor(Document&, const CSSStyleSheet*); | 55 static TreeScope* treeScopeFor(Document&, const CSSStyleSheet*); |
56 | 56 |
57 const TreeScope& treeScope() const { return *m_scope; } | 57 const TreeScope& treeScope() const { return *m_scope; } |
58 ScopedStyleResolver* parent() const; | 58 ScopedStyleResolver* parent() const; |
59 | 59 |
60 public: | 60 public: |
61 const StyleRuleKeyframes* keyframeStylesForAnimation(const StringImpl* anima
tionName); | 61 const StyleRuleKeyframes* keyframeStylesForAnimation(const StringImpl* anima
tionName); |
62 void addKeyframeStyle(PassRefPtrWillBeRawPtr<StyleRuleKeyframes>); | 62 void addKeyframeStyle(PassRefPtrWillBeRawPtr<StyleRuleKeyframes>); |
63 | 63 |
64 void collectMatchingAuthorRules(ElementRuleCollector&, bool includeEmptyRule
s, bool applyAuthorStyles, CascadeScope, CascadeOrder = ignoreCascadeOrder); | 64 void collectMatchingAuthorRules(ElementRuleCollector&, bool includeEmptyRule
s, bool isInShadowTree, CascadeScope, CascadeOrder = ignoreCascadeOrder); |
65 void matchPageRules(PageRuleCollector&); | 65 void matchPageRules(PageRuleCollector&); |
66 void addRulesFromSheet(CSSStyleSheet*, const MediaQueryEvaluator&, StyleReso
lver*); | 66 void addRulesFromSheet(CSSStyleSheet*, const MediaQueryEvaluator&, StyleReso
lver*); |
67 void collectFeaturesTo(RuleFeatureSet&, HashSet<const StyleSheetContents*>&
visitedSharedStyleSheetContents) const; | 67 void collectFeaturesTo(RuleFeatureSet&, HashSet<const StyleSheetContents*>&
visitedSharedStyleSheetContents) const; |
68 void resetAuthorStyle(); | 68 void resetAuthorStyle(); |
69 void collectViewportRulesTo(StyleResolver*) const; | 69 void collectViewportRulesTo(StyleResolver*) const; |
70 | 70 |
71 void trace(Visitor*); | 71 void trace(Visitor*); |
72 | 72 |
73 private: | 73 private: |
74 explicit ScopedStyleResolver(TreeScope& scope) | 74 explicit ScopedStyleResolver(TreeScope& scope) |
75 : m_scope(scope) | 75 : m_scope(scope) |
76 { | 76 { |
77 } | 77 } |
78 | 78 |
79 RawPtrWillBeMember<TreeScope> m_scope; | 79 RawPtrWillBeMember<TreeScope> m_scope; |
80 | 80 |
81 WillBeHeapVector<RawPtrWillBeMember<CSSStyleSheet> > m_authorStyleSheets; | 81 WillBeHeapVector<RawPtrWillBeMember<CSSStyleSheet> > m_authorStyleSheets; |
82 | 82 |
83 typedef WillBeHeapHashMap<const StringImpl*, RefPtrWillBeMember<StyleRuleKey
frames> > KeyframesRuleMap; | 83 typedef WillBeHeapHashMap<const StringImpl*, RefPtrWillBeMember<StyleRuleKey
frames> > KeyframesRuleMap; |
84 KeyframesRuleMap m_keyframesRuleMap; | 84 KeyframesRuleMap m_keyframesRuleMap; |
85 }; | 85 }; |
86 | 86 |
87 } // namespace blink | 87 } // namespace blink |
88 | 88 |
89 #endif // ScopedStyleResolver_h | 89 #endif // ScopedStyleResolver_h |
OLD | NEW |