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

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

Issue 1115353002: Update renderer to layoutObject in core/html. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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 | « no previous file | Source/core/html/HTMLAreaElement.cpp » ('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 e2836370a2ac1f1b54756a1d90197431ab509a87..b795aa0afc879730af37732742cca7081d8ec915 100644
--- a/Source/core/html/HTMLAppletElement.cpp
+++ b/Source/core/html/HTMLAppletElement.cpp
@@ -120,7 +120,7 @@ void HTMLAppletElement::updateWidgetInternal()
if (!isFinishedParsingChildren())
return;
- LayoutEmbeddedObject* renderer = layoutEmbeddedObject();
+ LayoutEmbeddedObject* layoutObject = layoutEmbeddedObject();
LocalFrame* frame = document().frame();
ASSERT(frame);
@@ -197,8 +197,8 @@ void HTMLAppletElement::updateWidgetInternal()
}
if (!placeholder && !widget) {
- if (!renderer->showsUnavailablePluginIndicator())
- renderer->setPluginUnavailabilityReason(LayoutEmbeddedObject::PluginMissing);
+ if (!layoutObject->showsUnavailablePluginIndicator())
+ layoutObject->setPluginUnavailabilityReason(LayoutEmbeddedObject::PluginMissing);
setPlaceholder(nullptr);
} else if (placeholder) {
setPlaceholder(placeholder.release());
« no previous file with comments | « no previous file | Source/core/html/HTMLAreaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698