| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 // This class selects a RenderStyle for a given element based on a collection of
stylesheets. | 44 // This class selects a RenderStyle for a given element based on a collection of
stylesheets. |
| 45 class ScopedStyleResolver final { | 45 class ScopedStyleResolver final { |
| 46 WTF_MAKE_NONCOPYABLE(ScopedStyleResolver); | 46 WTF_MAKE_NONCOPYABLE(ScopedStyleResolver); |
| 47 WTF_MAKE_FAST_ALLOCATED; | 47 WTF_MAKE_FAST_ALLOCATED; |
| 48 public: | 48 public: |
| 49 static PassOwnPtr<ScopedStyleResolver> create(TreeScope& scope) | 49 static PassOwnPtr<ScopedStyleResolver> create(TreeScope& scope) |
| 50 { | 50 { |
| 51 return adoptPtr(new ScopedStyleResolver(scope)); | 51 return adoptPtr(new ScopedStyleResolver(scope)); |
| 52 } | 52 } |
| 53 | 53 |
| 54 static TreeScope* treeScopeFor(Document&, const CSSStyleSheet*); | |
| 55 | |
| 56 const TreeScope& treeScope() const { return *m_scope; } | 54 const TreeScope& treeScope() const { return *m_scope; } |
| 57 | 55 |
| 58 public: | 56 public: |
| 59 const StyleRuleKeyframes* keyframeStylesForAnimation(const StringImpl* anima
tionName); | 57 const StyleRuleKeyframes* keyframeStylesForAnimation(const StringImpl* anima
tionName); |
| 60 void addKeyframeStyle(PassRefPtr<StyleRuleKeyframes>); | 58 void addKeyframeStyle(PassRefPtr<StyleRuleKeyframes>); |
| 61 | 59 |
| 62 void collectMatchingAuthorRules(ElementRuleCollector&, bool includeEmptyRule
s, bool applyAuthorStyles, CascadeScope, CascadeOrder = ignoreCascadeOrder); | 60 void collectMatchingAuthorRules(ElementRuleCollector&, bool includeEmptyRule
s, bool applyAuthorStyles, CascadeScope, CascadeOrder = ignoreCascadeOrder); |
| 63 void addRulesFromSheet(CSSStyleSheet*, const MediaQueryEvaluator&, StyleReso
lver*); | 61 void addRulesFromSheet(CSSStyleSheet*, const MediaQueryEvaluator&, StyleReso
lver*); |
| 64 void collectFeaturesTo(RuleFeatureSet&, HashSet<const StyleSheetContents*>&
visitedSharedStyleSheetContents) const; | 62 void collectFeaturesTo(RuleFeatureSet&, HashSet<const StyleSheetContents*>&
visitedSharedStyleSheetContents) const; |
| 65 void resetAuthorStyle(); | 63 void resetAuthorStyle(); |
| 66 | 64 |
| 67 private: | 65 private: |
| 68 explicit ScopedStyleResolver(TreeScope& scope) | 66 explicit ScopedStyleResolver(TreeScope& scope) |
| 69 : m_scope(scope) | 67 : m_scope(scope) |
| 70 { | 68 { |
| 71 } | 69 } |
| 72 | 70 |
| 73 RawPtr<TreeScope> m_scope; | 71 RawPtr<TreeScope> m_scope; |
| 74 | 72 |
| 75 Vector<RawPtr<CSSStyleSheet> > m_authorStyleSheets; | 73 Vector<RawPtr<CSSStyleSheet> > m_authorStyleSheets; |
| 76 | 74 |
| 77 typedef HashMap<const StringImpl*, RefPtr<StyleRuleKeyframes> > KeyframesRul
eMap; | 75 typedef HashMap<const StringImpl*, RefPtr<StyleRuleKeyframes> > KeyframesRul
eMap; |
| 78 KeyframesRuleMap m_keyframesRuleMap; | 76 KeyframesRuleMap m_keyframesRuleMap; |
| 79 }; | 77 }; |
| 80 | 78 |
| 81 } // namespace blink | 79 } // namespace blink |
| 82 | 80 |
| 83 #endif // SKY_ENGINE_CORE_CSS_RESOLVER_SCOPEDSTYLERESOLVER_H_ | 81 #endif // SKY_ENGINE_CORE_CSS_RESOLVER_SCOPEDSTYLERESOLVER_H_ |
| OLD | NEW |