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

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

Issue 1068393002: remove CSS 'all' property. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 8 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 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 template <StyleResolver::StyleApplicationPass pass> 114 template <StyleResolver::StyleApplicationPass pass>
115 static inline CSSPropertyID lastCSSPropertyId(); 115 static inline CSSPropertyID lastCSSPropertyId();
116 template <StyleResolver::StyleApplicationPass pass> 116 template <StyleResolver::StyleApplicationPass pass>
117 static inline bool isPropertyForPass(CSSPropertyID); 117 static inline bool isPropertyForPass(CSSPropertyID);
118 template <StyleApplicationPass pass> 118 template <StyleApplicationPass pass>
119 void applyMatchedProperties(StyleResolverState&, const MatchResult&, bool in heritedOnly); 119 void applyMatchedProperties(StyleResolverState&, const MatchResult&, bool in heritedOnly);
120 template <StyleApplicationPass pass> 120 template <StyleApplicationPass pass>
121 void applyProperties(StyleResolverState&, const StylePropertySet* properties , bool inheritedOnly); 121 void applyProperties(StyleResolverState&, const StylePropertySet* properties , bool inheritedOnly);
122 template <StyleApplicationPass pass> 122 template <StyleApplicationPass pass>
123 void applyAnimatedProperties(StyleResolverState&, const HashMap<CSSPropertyI D, RefPtr<Interpolation> >&); 123 void applyAnimatedProperties(StyleResolverState&, const HashMap<CSSPropertyI D, RefPtr<Interpolation> >&);
124 template <StyleResolver::StyleApplicationPass pass>
125 void applyAllProperty(StyleResolverState&, CSSValue*);
126 124
127 MatchedPropertiesCache m_matchedPropertiesCache; 125 MatchedPropertiesCache m_matchedPropertiesCache;
128 126
129 Document& m_document; 127 Document& m_document;
130 128
131 StyleSharingList m_styleSharingList; 129 StyleSharingList m_styleSharingList;
132 130
133 OwnPtr<StyleResolverStats> m_styleResolverStats; 131 OwnPtr<StyleResolverStats> m_styleResolverStats;
134 OwnPtr<StyleResolverStats> m_styleResolverStatsTotals; 132 OwnPtr<StyleResolverStats> m_styleResolverStatsTotals;
135 unsigned m_styleResolverStatsSequence; 133 unsigned m_styleResolverStatsSequence;
136 }; 134 };
137 135
138 } // namespace blink 136 } // namespace blink
139 137
140 #endif // SKY_ENGINE_CORE_CSS_RESOLVER_STYLERESOLVER_H_ 138 #endif // SKY_ENGINE_CORE_CSS_RESOLVER_STYLERESOLVER_H_
OLDNEW
« no previous file with comments | « sky/engine/core/css/parser/CSSPropertyParser.cpp ('k') | sky/engine/core/css/resolver/StyleResolver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698