OLD | NEW |
1 | 1 |
2 // Copyright 2014 The Chromium Authors. All rights reserved. | 2 // Copyright 2014 The Chromium Authors. All rights reserved. |
3 // Use of this source code is governed by a BSD-style license that can be | 3 // Use of this source code is governed by a BSD-style license that can be |
4 // found in the LICENSE file. | 4 // found in the LICENSE file. |
5 | 5 |
6 #include "config.h" | 6 #include "config.h" |
7 | 7 |
8 #include "core/css/invalidation/StyleInvalidator.h" | 8 #include "core/css/invalidation/StyleInvalidator.h" |
9 | 9 |
10 #include "core/css/invalidation/DescendantInvalidationSet.h" | 10 #include "core/css/invalidation/DescendantInvalidationSet.h" |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 } | 154 } |
155 | 155 |
156 element.clearChildNeedsStyleInvalidation(); | 156 element.clearChildNeedsStyleInvalidation(); |
157 element.clearNeedsStyleInvalidation(); | 157 element.clearNeedsStyleInvalidation(); |
158 | 158 |
159 return thisElementNeedsStyleRecalc; | 159 return thisElementNeedsStyleRecalc; |
160 } | 160 } |
161 | 161 |
162 void StyleInvalidator::trace(Visitor* visitor) | 162 void StyleInvalidator::trace(Visitor* visitor) |
163 { | 163 { |
| 164 #if ENABLE(OILPAN) |
164 visitor->trace(m_pendingInvalidationMap); | 165 visitor->trace(m_pendingInvalidationMap); |
| 166 #endif |
165 } | 167 } |
166 | 168 |
167 } // namespace blink | 169 } // namespace blink |
OLD | NEW |