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

Unified Diff: third_party/WebKit/Source/core/html/HTMLMediaElement.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/HTMLMediaElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
index d1df73ea7a01981c75a55126bda93136a0de210c..b831d4a932ae1b7e449dc7204db5c5f2f76c0a7e 100644
--- a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
@@ -623,9 +623,9 @@ void HTMLMediaElement::removedFrom(ContainerNode* insertionPoint)
}
}
-void HTMLMediaElement::attach(const AttachContext& context)
+void HTMLMediaElement::attachLayoutTree(const AttachContext& context)
{
- HTMLElement::attach(context);
+ HTMLElement::attachLayoutTree(context);
if (layoutObject())
layoutObject()->updateFromElement();

Powered by Google App Engine
This is Rietveld 408576698