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

Unified Diff: Source/core/html/HTMLObjectElement.cpp

Issue 271533009: Oilpan: Prepare to move FormAssociatedElement to Oilpan heap, part 1. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove using Created 6 years, 7 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
« no previous file with comments | « Source/core/html/HTMLObjectElement.h ('k') | Source/core/html/ValidityState.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLObjectElement.cpp
diff --git a/Source/core/html/HTMLObjectElement.cpp b/Source/core/html/HTMLObjectElement.cpp
index faf7cb33c5817f32492ef95d04533f70be702dfc..a7194104d0972854e979ac61252fd4d14b19eee4 100644
--- a/Source/core/html/HTMLObjectElement.cpp
+++ b/Source/core/html/HTMLObjectElement.cpp
@@ -70,6 +70,12 @@ PassRefPtrWillBeRawPtr<HTMLObjectElement> HTMLObjectElement::create(Document& do
return element.release();
}
+void HTMLObjectElement::trace(Visitor* visitor)
+{
+ FormAssociatedElement::trace(visitor);
+ HTMLPlugInElement::trace(visitor);
+}
+
RenderWidget* HTMLObjectElement::existingRenderWidget() const
{
return renderPart(); // This will return 0 if the renderer is not a RenderPart.
« no previous file with comments | « Source/core/html/HTMLObjectElement.h ('k') | Source/core/html/ValidityState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698