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

Side by Side Diff: Source/core/css/invalidation/StyleInvalidator.cpp

Issue 403333002: [oilpan]: Remove support for tracing off-heap hashmaps. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add GC_PLUGIN_IGNORE Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« no previous file with comments | « Source/core/css/TreeBoundaryCrossingRules.cpp ('k') | Source/core/css/resolver/MatchedPropertiesCache.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698