Index: Source/core/html/HTMLAreaElement.cpp |
diff --git a/Source/core/html/HTMLAreaElement.cpp b/Source/core/html/HTMLAreaElement.cpp |
index 464d29e3f94a3210eaea93437dc0c9e7938b7ab2..2548e5b82828cf84d2d1a2116f8ecfc0685a5d86 100644 |
--- a/Source/core/html/HTMLAreaElement.cpp |
+++ b/Source/core/html/HTMLAreaElement.cpp |
@@ -26,7 +26,7 @@ |
#include "core/html/HTMLImageElement.h" |
#include "core/html/HTMLMapElement.h" |
#include "core/layout/HitTestResult.h" |
-#include "core/rendering/RenderImage.h" |
+#include "core/layout/LayoutImage.h" |
#include "core/rendering/RenderView.h" |
#include "platform/LengthFunctions.h" |
#include "platform/graphics/Path.h" |
@@ -213,7 +213,7 @@ void HTMLAreaElement::setFocus(bool shouldBeFocused) |
if (!renderer || !renderer->isImage()) |
return; |
- toRenderImage(renderer)->areaElementFocusChanged(this); |
+ toLayoutImage(renderer)->areaElementFocusChanged(this); |
} |
void HTMLAreaElement::updateFocusAppearance(bool restorePreviousSelection) |