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

Unified Diff: third_party/WebKit/Source/core/html/HTMLProgressElement.cpp

Issue 2164493002: Renamed Node::attach to Node::attachLayoutTree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp b/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
index 2126672e2d69e065443ebb79b309ba0ddb5da6c3..8ccbdb3411d378d4916c81d1f79c5be258d7ec6d 100644
--- a/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
@@ -86,9 +86,9 @@ void HTMLProgressElement::parseAttribute(const QualifiedName& name, const Atomic
}
}
-void HTMLProgressElement::attach(const AttachContext& context)
+void HTMLProgressElement::attachLayoutTree(const AttachContext& context)
{
- LabelableElement::attach(context);
+ LabelableElement::attachLayoutTree(context);
if (LayoutProgressItem layoutItem = LayoutProgressItem(layoutProgress()))
layoutItem.updateFromElement();
}

Powered by Google App Engine
This is Rietveld 408576698