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

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

Issue 2318913002: Rename Document::attach/detachLayoutTree to Document::initialize/shutdown (Closed)
Patch Set: temp Created 4 years, 3 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/PluginDocument.cpp
diff --git a/third_party/WebKit/Source/core/html/PluginDocument.cpp b/third_party/WebKit/Source/core/html/PluginDocument.cpp
index b27834ce3530c4de36897a4df4f26cf9dfa0da15..36324a0708a99cd5cd051fe30ff82df189070336 100644
--- a/third_party/WebKit/Source/core/html/PluginDocument.cpp
+++ b/third_party/WebKit/Source/core/html/PluginDocument.cpp
@@ -192,11 +192,11 @@ Node* PluginDocument::pluginNode()
return m_pluginNode.get();
}
-void PluginDocument::detachLayoutTree(const AttachContext& context)
+void PluginDocument::shutdown()
{
// Release the plugin node so that we don't have a circular reference.
m_pluginNode = nullptr;
- HTMLDocument::detachLayoutTree(context);
+ HTMLDocument::shutdown();
}
DEFINE_TRACE(PluginDocument)
« no previous file with comments | « third_party/WebKit/Source/core/html/PluginDocument.h ('k') | third_party/WebKit/Source/core/loader/FrameLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698