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

Side by Side Diff: third_party/WebKit/Source/core/css/resolver/StyleResolver.h

Issue 2445673002: Rename collectTreeBoundaryCrossingRules. (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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. 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
4 * All rights reserved. 4 * All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 unsigned rulesToInclude); 216 unsigned rulesToInclude);
217 void matchRuleSet(ElementRuleCollector&, RuleSet*); 217 void matchRuleSet(ElementRuleCollector&, RuleSet*);
218 void matchUARules(ElementRuleCollector&); 218 void matchUARules(ElementRuleCollector&);
219 void matchScopedRules(const Element&, ElementRuleCollector&); 219 void matchScopedRules(const Element&, ElementRuleCollector&);
220 void matchAuthorRules(const Element&, ElementRuleCollector&); 220 void matchAuthorRules(const Element&, ElementRuleCollector&);
221 void matchAuthorRulesV0(const Element&, ElementRuleCollector&); 221 void matchAuthorRulesV0(const Element&, ElementRuleCollector&);
222 void matchAllRules(StyleResolverState&, 222 void matchAllRules(StyleResolverState&,
223 ElementRuleCollector&, 223 ElementRuleCollector&,
224 bool includeSMILProperties); 224 bool includeSMILProperties);
225 void collectFeatures(); 225 void collectFeatures();
226 void collectTreeBoundaryCrossingRules(const Element&, ElementRuleCollector&); 226 void collectTreeBoundaryCrossingRulesV0CascadeOrder(const Element&,
227 ElementRuleCollector&);
227 228
228 void applyMatchedProperties(StyleResolverState&, const MatchResult&); 229 void applyMatchedProperties(StyleResolverState&, const MatchResult&);
229 bool applyAnimatedProperties(StyleResolverState&, 230 bool applyAnimatedProperties(StyleResolverState&,
230 const Element* animatingElement); 231 const Element* animatingElement);
231 void applyCallbackSelectors(StyleResolverState&); 232 void applyCallbackSelectors(StyleResolverState&);
232 233
233 template <CSSPropertyPriority priority> 234 template <CSSPropertyPriority priority>
234 void applyMatchedProperties(StyleResolverState&, 235 void applyMatchedProperties(StyleResolverState&,
235 const MatchedPropertiesRange&, 236 const MatchedPropertiesRange&,
236 bool important, 237 bool important,
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 bool m_hasFullscreenUAStyle = false; 295 bool m_hasFullscreenUAStyle = false;
295 296
296 unsigned m_styleSharingDepth; 297 unsigned m_styleSharingDepth;
297 HeapVector<Member<StyleSharingList>, styleSharingMaxDepth> 298 HeapVector<Member<StyleSharingList>, styleSharingMaxDepth>
298 m_styleSharingLists; 299 m_styleSharingLists;
299 }; 300 };
300 301
301 } // namespace blink 302 } // namespace blink
302 303
303 #endif // StyleResolver_h 304 #endif // StyleResolver_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698