Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(470)

Side by Side Diff: sky/engine/core/css/resolver/ScopedStyleResolver.h

Issue 839473005: Simplify ScopedStyleResolver keyframe handling. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 const TreeScope& treeScope() const { return *m_scope; } 54 const TreeScope& treeScope() const { return *m_scope; }
55 55
56 public: 56 public:
57 const StyleRuleKeyframes* keyframeStylesForAnimation(const StringImpl* anima tionName); 57 const StyleRuleKeyframes* keyframeStylesForAnimation(String animationName);
58 void addKeyframeStyle(PassRefPtr<StyleRuleKeyframes>);
59 58
60 void collectMatchingAuthorRules(ElementRuleCollector&, bool includeEmptyRule s, bool applyAuthorStyles, CascadeScope, CascadeOrder = ignoreCascadeOrder); 59 void collectMatchingAuthorRules(ElementRuleCollector&, bool includeEmptyRule s, bool applyAuthorStyles, CascadeScope, CascadeOrder = ignoreCascadeOrder);
61 void addRulesFromSheet(CSSStyleSheet*, StyleResolver*); 60 void addRulesFromSheet(CSSStyleSheet*, StyleResolver*);
62 61
63 void resetAuthorStyle(); 62 void resetAuthorStyle();
64 63
65 const RuleFeatureSet& features() const { return m_features; } 64 const RuleFeatureSet& features() const { return m_features; }
66 65
67 private: 66 private:
68 explicit ScopedStyleResolver(TreeScope&); 67 explicit ScopedStyleResolver(TreeScope&);
69 68
70 RawPtr<TreeScope> m_scope; 69 RawPtr<TreeScope> m_scope;
71 Vector<RawPtr<CSSStyleSheet> > m_authorStyleSheets; 70 Vector<RawPtr<CSSStyleSheet> > m_authorStyleSheets;
72 71
73 typedef HashMap<const StringImpl*, RefPtr<StyleRuleKeyframes> > KeyframesRul eMap;
74 KeyframesRuleMap m_keyframesRuleMap;
75
76 RuleFeatureSet m_features; 72 RuleFeatureSet m_features;
77 }; 73 };
78 74
79 } // namespace blink 75 } // namespace blink
80 76
81 #endif // SKY_ENGINE_CORE_CSS_RESOLVER_SCOPEDSTYLERESOLVER_H_ 77 #endif // SKY_ENGINE_CORE_CSS_RESOLVER_SCOPEDSTYLERESOLVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698