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

Unified Diff: Source/web/ChromeClientImpl.cpp

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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/platform/text/BidiResolver.h ('k') | Source/web/ContextMenuClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ChromeClientImpl.cpp
diff --git a/Source/web/ChromeClientImpl.cpp b/Source/web/ChromeClientImpl.cpp
index 64f2a7f50863709e7ad2d5897b8c3af464150ed2..ec7aa940bed3db6c6a5574f94764cef2b14bfbae 100644
--- a/Source/web/ChromeClientImpl.cpp
+++ b/Source/web/ChromeClientImpl.cpp
@@ -552,7 +552,7 @@ void ChromeClientImpl::mouseDidMoveOverElement(const HitTestResult& result)
} else if (result.innerNonSharedNode()
&& (isHTMLObjectElement(*result.innerNonSharedNode())
|| isHTMLEmbedElement(*result.innerNonSharedNode()))) {
- RenderObject* object = result.innerNonSharedNode()->renderer();
+ LayoutObject* object = result.innerNonSharedNode()->renderer();
if (object && object->isRenderPart()) {
Widget* widget = toRenderPart(object)->widget();
if (widget && widget->isPluginContainer()) {
« no previous file with comments | « Source/platform/text/BidiResolver.h ('k') | Source/web/ContextMenuClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698