Index: Source/core/inspector/InspectorCSSAgent.cpp |
diff --git a/Source/core/inspector/InspectorCSSAgent.cpp b/Source/core/inspector/InspectorCSSAgent.cpp |
index 5cb3d25a83888acf1d049104294d405e9fe3eef6..5355bb1606413c3e25d8a8e66a1d46cd629f0dd1 100644 |
--- a/Source/core/inspector/InspectorCSSAgent.cpp |
+++ b/Source/core/inspector/InspectorCSSAgent.cpp |
@@ -59,11 +59,11 @@ |
#include "core/inspector/InspectorResourceContentLoader.h" |
#include "core/inspector/InspectorState.h" |
#include "core/inspector/InstrumentingAgents.h" |
+#include "core/layout/LayoutObject.h" |
+#include "core/layout/LayoutObjectInlines.h" |
#include "core/loader/DocumentLoader.h" |
#include "core/page/Page.h" |
#include "core/rendering/InlineTextBox.h" |
-#include "core/rendering/RenderObject.h" |
-#include "core/rendering/RenderObjectInlines.h" |
#include "core/rendering/RenderText.h" |
#include "core/rendering/RenderTextFragment.h" |
#include "platform/fonts/Font.h" |
@@ -846,7 +846,7 @@ void InspectorCSSAgent::getPlatformFontsForNode(ErrorString* errorString, int no |
// If we're the remaining text from a first-letter then our previous |
// sibling has to be the first-letter renderer. |
- RenderObject* previous = renderer->previousSibling(); |
+ LayoutObject* previous = renderer->previousSibling(); |
if (!previous) |
continue; |