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

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
« no previous file with comments | « Source/core/inspector/InspectorPageAgent.cpp ('k') | Source/core/inspector/InspectorTimelineAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorTimelineAgent.h
diff --git a/Source/core/inspector/InspectorTimelineAgent.h b/Source/core/inspector/InspectorTimelineAgent.h
index f6a49019d0b475abe0ff86d6644abdec9cfb7827..c6c757ce75249c07ef16f734c1efe017487f0e4f 100644
--- a/Source/core/inspector/InspectorTimelineAgent.h
+++ b/Source/core/inspector/InspectorTimelineAgent.h
@@ -73,7 +73,7 @@ class KURL;
class ScriptState;
class Node;
class RenderImage;
-class RenderObject;
+class LayoutObject;
class ResourceError;
class ResourceLoader;
class ResourceRequest;
@@ -147,7 +147,7 @@ public:
void didInvalidateLayout(LocalFrame*);
bool willLayout(LocalFrame*);
- void didLayout(RenderObject*);
+ void didLayout(LayoutObject*);
void willUpdateLayerTree();
void layerTreeDidChange();
@@ -157,13 +157,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();
@@ -268,9 +268,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();
« no previous file with comments | « Source/core/inspector/InspectorPageAgent.cpp ('k') | Source/core/inspector/InspectorTimelineAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698