Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1104)

Unified Diff: Source/core/inspector/InspectorTimelineAgent.h

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698