Chromium Code Reviews| Index: Source/core/dom/SelectorQuery.h |
| diff --git a/Source/core/dom/SelectorQuery.h b/Source/core/dom/SelectorQuery.h |
| index b0f99f139f4c07b1fd37872775dce29090cbc14c..e3abe921f2934bf2c57b5b71ecf7722c08b84f29 100644 |
| --- a/Source/core/dom/SelectorQuery.h |
| +++ b/Source/core/dom/SelectorQuery.h |
| @@ -80,7 +80,8 @@ private: |
| const CSSSelector* selectorForIdLookup(const CSSSelector&) const; |
| Vector<const CSSSelector*> m_selectors; |
| - bool m_crossesTreeBoundary; |
| + bool m_crossesTreeBoundary : 1; |
| + bool m_needsUpdatedDistribution : 1; |
|
kochi
2015/05/25 05:40:57
I'm not against this, or rather like this, but
I'm
esprehn
2015/05/25 06:21:11
Those objects are on the stack, so using bitfields
kochi
2015/05/25 11:07:04
Thanks for the explanation!
|
| }; |
| class SelectorQuery { |