| Index: Source/web/WebNode.cpp
|
| diff --git a/Source/web/WebNode.cpp b/Source/web/WebNode.cpp
|
| index c0fbf2675fd4c95911a29769e57212620d66e9f0..5e864fd0eca119844f2463e4e7c7bf6308fde0e6 100644
|
| --- a/Source/web/WebNode.cpp
|
| +++ b/Source/web/WebNode.cpp
|
| @@ -41,7 +41,7 @@
|
| #include "core/events/Event.h"
|
| #include "core/html/HTMLCollection.h"
|
| #include "core/html/HTMLElement.h"
|
| -#include "core/rendering/RenderObject.h"
|
| +#include "core/layout/LayoutObject.h"
|
| #include "core/rendering/RenderPart.h"
|
| #include "modules/accessibility/AXObject.h"
|
| #include "modules/accessibility/AXObjectCacheImpl.h"
|
| @@ -231,7 +231,7 @@ WebPluginContainer* WebNode::pluginContainer() const
|
| return 0;
|
| const Node& coreNode = *constUnwrap<Node>();
|
| if (isHTMLObjectElement(coreNode) || isHTMLEmbedElement(coreNode)) {
|
| - RenderObject* object = coreNode.renderer();
|
| + LayoutObject* object = coreNode.renderer();
|
| if (object && object->isRenderPart()) {
|
| Widget* widget = toRenderPart(object)->widget();
|
| if (widget && widget->isPluginContainer())
|
|
|