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

Unified Diff: Source/web/ContextMenuClientImpl.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/web/ChromeClientImpl.cpp ('k') | Source/web/FindInPageCoordinates.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ContextMenuClientImpl.cpp
diff --git a/Source/web/ContextMenuClientImpl.cpp b/Source/web/ContextMenuClientImpl.cpp
index 0effc7358ad5eb8d60b714a675b26b7bf420a793..0f7a52bb9a8faace9b294a2882ac244c2c48781a 100644
--- a/Source/web/ContextMenuClientImpl.cpp
+++ b/Source/web/ContextMenuClientImpl.cpp
@@ -271,7 +271,7 @@ void ContextMenuClientImpl::showContextMenu(const ContextMenu* defaultMenu)
if (mediaElement->shouldShowControls())
data.mediaFlags |= WebContextMenuData::MediaControls;
} else if (isHTMLObjectElement(*r.innerNonSharedNode()) || isHTMLEmbedElement(*r.innerNonSharedNode())) {
- RenderObject* object = r.innerNonSharedNode()->renderer();
+ LayoutObject* object = r.innerNonSharedNode()->renderer();
if (object && object->isRenderPart()) {
Widget* widget = toRenderPart(object)->widget();
if (widget && widget->isPluginContainer()) {
« no previous file with comments | « Source/web/ChromeClientImpl.cpp ('k') | Source/web/FindInPageCoordinates.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698