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

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

Issue 1424783003: CSS: Use UINT_MAX for ~ sibling invalidation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/RuleFeature.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. 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 InvalidationSet& ensureAttributeInvalidationSet(const AtomicString& attribut eName, InvalidationType type) { return ensureAttributeInvalidationData(attribute Name).ensureInvalidationSet(type); } 132 InvalidationSet& ensureAttributeInvalidationSet(const AtomicString& attribut eName, InvalidationType type) { return ensureAttributeInvalidationData(attribute Name).ensureInvalidationSet(type); }
133 InvalidationSet& ensureIdInvalidationSet(const AtomicString& id, Invalidatio nType type) { return ensureIdInvalidationData(id).ensureInvalidationSet(type); } 133 InvalidationSet& ensureIdInvalidationSet(const AtomicString& id, Invalidatio nType type) { return ensureIdInvalidationData(id).ensureInvalidationSet(type); }
134 InvalidationSet& ensurePseudoInvalidationSet(CSSSelector::PseudoType pseudoT ype, InvalidationType type) { return ensurePseudoInvalidationData(pseudoType).en sureInvalidationSet(type); } 134 InvalidationSet& ensurePseudoInvalidationSet(CSSSelector::PseudoType pseudoT ype, InvalidationType type) { return ensurePseudoInvalidationData(pseudoType).en sureInvalidationSet(type); }
135 135
136 void updateInvalidationSets(const RuleData&); 136 void updateInvalidationSets(const RuleData&);
137 void updateInvalidationSetsForContentAttribute(const RuleData&); 137 void updateInvalidationSetsForContentAttribute(const RuleData&);
138 138
139 struct InvalidationSetFeatures { 139 struct InvalidationSetFeatures {
140 DISALLOW_ALLOCATION(); 140 DISALLOW_ALLOCATION();
141 InvalidationSetFeatures() 141 InvalidationSetFeatures()
142 : maxDirectAdjacentSelectors(std::numeric_limits<unsigned>::max()) 142 : maxDirectAdjacentSelectors(UINT_MAX)
143 , customPseudoElement(false) 143 , customPseudoElement(false)
144 , hasBeforeOrAfter(false) 144 , hasBeforeOrAfter(false)
145 , treeBoundaryCrossing(false) 145 , treeBoundaryCrossing(false)
146 , adjacent(false) 146 , adjacent(false)
147 , insertionPointCrossing(false) 147 , insertionPointCrossing(false)
148 , forceSubtree(false) 148 , forceSubtree(false)
149 { } 149 { }
150 150
151 Vector<AtomicString> classes; 151 Vector<AtomicString> classes;
152 Vector<AtomicString> attributes; 152 Vector<AtomicString> attributes;
(...skipping 26 matching lines...) Expand all
179 PseudoTypeInvalidationSetMap m_pseudoInvalidationSets; 179 PseudoTypeInvalidationSetMap m_pseudoInvalidationSets;
180 180
181 friend class RuleFeatureSetTest; 181 friend class RuleFeatureSetTest;
182 }; 182 };
183 183
184 } // namespace blink 184 } // namespace blink
185 185
186 WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::RuleFeature); 186 WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::RuleFeature);
187 187
188 #endif // RuleFeature_h 188 #endif // RuleFeature_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/RuleFeature.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698