Index: Source/core/inspector/InspectorTimelineAgent.h |
diff --git a/Source/core/inspector/InspectorTimelineAgent.h b/Source/core/inspector/InspectorTimelineAgent.h |
index 5ad09562d8ee0211540401841d37572afcc32d0f..964f6e3f310f3a1dbe923ec84b4626ba4898ab88 100644 |
--- a/Source/core/inspector/InspectorTimelineAgent.h |
+++ b/Source/core/inspector/InspectorTimelineAgent.h |
@@ -72,7 +72,7 @@ class KURL; |
class ScriptState; |
class Node; |
class RenderImage; |
-class RenderObject; |
+class LayoutObject; |
class ResourceError; |
class ResourceLoader; |
class ResourceRequest; |
@@ -146,7 +146,7 @@ public: |
void didInvalidateLayout(LocalFrame*); |
bool willLayout(LocalFrame*); |
- void didLayout(RenderObject*); |
+ void didLayout(LayoutObject*); |
void willUpdateLayerTree(); |
void layerTreeDidChange(); |
@@ -156,13 +156,13 @@ public: |
bool willRecalculateStyle(Document*); |
void didRecalculateStyle(int elementCount); |
- void willPaint(RenderObject*, const GraphicsLayer*); |
- void didPaint(RenderObject*, const GraphicsLayer*, GraphicsContext*, const LayoutRect&); |
+ void willPaint(LayoutObject*, const GraphicsLayer*); |
+ void didPaint(LayoutObject*, const GraphicsLayer*, GraphicsContext*, const LayoutRect&); |
void willPaintImage(RenderImage*); |
void didPaintImage(); |
- void willScrollLayer(RenderObject*); |
+ void willScrollLayer(LayoutObject*); |
void didScrollLayer(); |
void willComposite(); |
@@ -267,9 +267,9 @@ private: |
void clearRecordStack(); |
PassRefPtr<TypeBuilder::Timeline::TimelineEvent> createRecordForEvent(const TraceEventDispatcher::TraceEvent&, const String& type, PassRefPtr<JSONObject> data); |
- void localToPageQuad(const RenderObject& renderer, const LayoutRect&, FloatQuad*); |
+ void localToPageQuad(const LayoutObject& renderer, const LayoutRect&, FloatQuad*); |
long long nodeId(Node*); |
- long long nodeId(RenderObject*); |
+ long long nodeId(LayoutObject*); |
double timestamp(); |