Index: Source/core/page/EventHandler.cpp |
diff --git a/Source/core/page/EventHandler.cpp b/Source/core/page/EventHandler.cpp |
index b84bda89a2b33ee591bb06602bd2f84fa6018b9c..581c19aaae92a86def83dc537eece758ee1afc01 100644 |
--- a/Source/core/page/EventHandler.cpp |
+++ b/Source/core/page/EventHandler.cpp |
@@ -66,7 +66,7 @@ |
#include "core/layout/LayoutPart.h" |
#include "core/layout/LayoutTextControlSingleLine.h" |
#include "core/layout/LayoutView.h" |
-#include "core/layout/style/LayoutStyle.h" |
+#include "core/layout/style/ComputedStyle.h" |
#include "core/loader/FrameLoader.h" |
#include "core/loader/FrameLoaderClient.h" |
#include "core/page/AutoscrollController.h" |
@@ -1088,7 +1088,7 @@ OptionalCursor EventHandler::selectCursor(const HitTestResult& result) |
return selectAutoCursor(result, node, iBeamCursor()); |
LayoutObject* renderer = node->layoutObject(); |
- const LayoutStyle* style = renderer ? renderer->style() : nullptr; |
+ const ComputedStyle* style = renderer ? renderer->style() : nullptr; |
if (renderer) { |
Cursor overrideCursor; |