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

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

Issue 931003002: Move and rename RenderPart to LayoutPart. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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/HTMLAppletElement.h ('k') | Source/core/html/HTMLEmbedElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLAppletElement.cpp
diff --git a/Source/core/html/HTMLAppletElement.cpp b/Source/core/html/HTMLAppletElement.cpp
index 6e222b365d0935ce297db28b83ca888c3874db46..0398e813e9824099b455fe889275413e9a7c16e6 100644
--- a/Source/core/html/HTMLAppletElement.cpp
+++ b/Source/core/html/HTMLAppletElement.cpp
@@ -101,16 +101,16 @@ LayoutObject* HTMLAppletElement::createRenderer(const LayoutStyle& style)
return new LayoutApplet(this);
}
-RenderPart* HTMLAppletElement::renderPartForJSBindings() const
+LayoutPart* HTMLAppletElement::layoutPartForJSBindings() const
{
if (!canEmbedJava())
return nullptr;
- return HTMLPlugInElement::renderPartForJSBindings();
+ return HTMLPlugInElement::layoutPartForJSBindings();
}
-RenderPart* HTMLAppletElement::existingRenderPart() const
+LayoutPart* HTMLAppletElement::existingLayoutPart() const
{
- return renderPart();
+ return layoutPart();
}
void HTMLAppletElement::updateWidgetInternal()
« no previous file with comments | « Source/core/html/HTMLAppletElement.h ('k') | Source/core/html/HTMLEmbedElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698