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

Side by Side Diff: Source/core/dom/shadow/ShadowRoot.cpp

Issue 15871005: Avoid N^2 walk placing renderers when building the render tree (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Again, updating to ToT. Created 7 years, 6 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
« Source/core/dom/Document.cpp ('K') | « Source/core/dom/Text.cpp ('k') | no next file » | 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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Neither the name of Google Inc. nor the names of its 10 * * Neither the name of Google Inc. nor the names of its
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 } 135 }
136 136
137 void ShadowRoot::recalcStyle(StyleChange change) 137 void ShadowRoot::recalcStyle(StyleChange change)
138 { 138 {
139 // ShadowRoot doesn't support custom callbacks. 139 // ShadowRoot doesn't support custom callbacks.
140 ASSERT(!hasCustomStyleCallbacks()); 140 ASSERT(!hasCustomStyleCallbacks());
141 141
142 StyleResolver* styleResolver = document()->styleResolver(); 142 StyleResolver* styleResolver = document()->styleResolver();
143 styleResolver->pushParentShadowRoot(this); 143 styleResolver->pushParentShadowRoot(this);
144 144
145 // When we're set to lazyAttach we'll have a FullStyleChange and we'll need
146 // to promote the change to a Force for all our descendants so they get a
147 // recalc and will attach.
148 if (styleChangeType() == FullStyleChange)
ojan 2013/06/03 23:03:29 Did you mean to include this in this patch?
149 change = Force;
150
145 for (Node* child = firstChild(); child; child = child->nextSibling()) { 151 for (Node* child = firstChild(); child; child = child->nextSibling()) {
146 if (child->isElementNode()) 152 if (child->isElementNode())
147 toElement(child)->recalcStyle(change); 153 toElement(child)->recalcStyle(change);
148 else if (child->isTextNode()) 154 else if (child->isTextNode())
149 toText(child)->recalcTextStyle(change); 155 toText(child)->recalcTextStyle(change);
150 } 156 }
151 157
152 styleResolver->popParentShadowRoot(this); 158 styleResolver->popParentShadowRoot(this);
153 clearNeedsStyleRecalc(); 159 clearNeedsStyleRecalc();
154 clearChildNeedsStyleRecalc(); 160 clearChildNeedsStyleRecalc();
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 { 277 {
272 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM); 278 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM);
273 DocumentFragment::reportMemoryUsage(memoryObjectInfo); 279 DocumentFragment::reportMemoryUsage(memoryObjectInfo);
274 TreeScope::reportMemoryUsage(memoryObjectInfo); 280 TreeScope::reportMemoryUsage(memoryObjectInfo);
275 info.addMember(m_prev, "prev"); 281 info.addMember(m_prev, "prev");
276 info.addMember(m_next, "next"); 282 info.addMember(m_next, "next");
277 info.addMember(m_scopeDistribution, "scopeDistribution"); 283 info.addMember(m_scopeDistribution, "scopeDistribution");
278 } 284 }
279 285
280 } 286 }
OLDNEW
« Source/core/dom/Document.cpp ('K') | « Source/core/dom/Text.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698