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

Unified Diff: Source/core/inspector/InspectorInstrumentation.idl

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/InspectorInstrumentation.idl
diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl
index 32b0359138c352aaae2a7bf5bbb13885173ea1a6..daadef7fd321e1fdbc1b3ace08a391640b0bb185 100644
--- a/Source/core/inspector/InspectorInstrumentation.idl
+++ b/Source/core/inspector/InspectorInstrumentation.idl
@@ -231,7 +231,7 @@ interface InspectorInstrumentation {
InspectorInstrumentationCookie willLayout([Keep] LocalFrame*);
[Timeline, Page, Inline=FastReturn]
- void didLayout(const InspectorInstrumentationCookie&, RenderObject* root);
+ void didLayout(const InspectorInstrumentationCookie&, LayoutObject* root);
[Page, Inline=FastReturn]
void didScroll(LocalFrame*);
@@ -249,16 +249,16 @@ interface InspectorInstrumentation {
void didDispatchXHRLoadendEvent(ExecutionContext*, XMLHttpRequest*);
[Timeline, Inline=FastReturn]
- void willScrollLayer([Keep] RenderObject*);
+ void willScrollLayer([Keep] LayoutObject*);
[Timeline, Inline=FastReturn]
- void didScrollLayer(RenderObject*);
+ void didScrollLayer(LayoutObject*);
[Timeline, Inline=FastReturn]
- void willPaint([Keep] RenderObject*, const GraphicsLayer*);
+ void willPaint([Keep] LayoutObject*, const GraphicsLayer*);
[Timeline, Page, LayerTree, Inline=FastReturn]
- void didPaint([Keep] RenderObject*, const GraphicsLayer*, GraphicsContext*, const LayoutRect&);
+ void didPaint([Keep] LayoutObject*, const GraphicsLayer*, GraphicsContext*, const LayoutRect&);
[Timeline, Inline=FastReturn]
void willPaintImage([Keep] RenderImage*);

Powered by Google App Engine
This is Rietveld 408576698