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

Unified Diff: third_party/WebKit/Source/core/html/HTMLPlugInElement.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/HTMLPlugInElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp b/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
index c48fbe6b0b1492f8f41e49800b154b60cf5ed856..c591ce431384d99fc7e66a6af59276f0a4909cb0 100644
--- a/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp
@@ -131,9 +131,9 @@ void HTMLPlugInElement::didMoveToNewDocument(Document& oldDocument)
HTMLFrameOwnerElement::didMoveToNewDocument(oldDocument);
}
-void HTMLPlugInElement::attach(const AttachContext& context)
+void HTMLPlugInElement::attachLayoutTree(const AttachContext& context)
{
- HTMLFrameOwnerElement::attach(context);
+ HTMLFrameOwnerElement::attachLayoutTree(context);
if (!layoutObject() || useFallbackContent()) {
// If we don't have a layoutObject we have to dispose of any plugins

Powered by Google App Engine
This is Rietveld 408576698