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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 [AsyncCallTracker, Debugger, Timeline, Inline=FastReturn] 224 [AsyncCallTracker, Debugger, Timeline, Inline=FastReturn]
225 void didFireTimer(const InspectorInstrumentationCookie&); 225 void didFireTimer(const InspectorInstrumentationCookie&);
226 226
227 [Timeline, Inline=FastReturn] 227 [Timeline, Inline=FastReturn]
228 void didInvalidateLayout([Keep] LocalFrame*); 228 void didInvalidateLayout([Keep] LocalFrame*);
229 229
230 [Timeline, Inline=FastReturn] 230 [Timeline, Inline=FastReturn]
231 InspectorInstrumentationCookie willLayout([Keep] LocalFrame*); 231 InspectorInstrumentationCookie willLayout([Keep] LocalFrame*);
232 232
233 [Timeline, Page, Inline=FastReturn] 233 [Timeline, Page, Inline=FastReturn]
234 void didLayout(const InspectorInstrumentationCookie&, RenderObject* root); 234 void didLayout(const InspectorInstrumentationCookie&, LayoutObject* root);
235 235
236 [Page, Inline=FastReturn] 236 [Page, Inline=FastReturn]
237 void didScroll(LocalFrame*); 237 void didScroll(LocalFrame*);
238 238
239 [Page, Inline=FastReturn] 239 [Page, Inline=FastReturn]
240 void didResizeMainFrame(LocalFrame*); 240 void didResizeMainFrame(LocalFrame*);
241 241
242 [Timeline, Inline=FastReturn] 242 [Timeline, Inline=FastReturn]
243 InspectorInstrumentationCookie willDispatchXHRLoadEvent([Keep] ExecutionCont ext*, XMLHttpRequest*); 243 InspectorInstrumentationCookie willDispatchXHRLoadEvent([Keep] ExecutionCont ext*, XMLHttpRequest*);
244 244
245 [Timeline, Inline=FastReturn] 245 [Timeline, Inline=FastReturn]
246 void didDispatchXHRLoadEvent(const InspectorInstrumentationCookie&); 246 void didDispatchXHRLoadEvent(const InspectorInstrumentationCookie&);
247 247
248 [AsyncCallTracker, Inline=FastReturn] 248 [AsyncCallTracker, Inline=FastReturn]
249 void didDispatchXHRLoadendEvent(ExecutionContext*, XMLHttpRequest*); 249 void didDispatchXHRLoadendEvent(ExecutionContext*, XMLHttpRequest*);
250 250
251 [Timeline, Inline=FastReturn] 251 [Timeline, Inline=FastReturn]
252 void willScrollLayer([Keep] RenderObject*); 252 void willScrollLayer([Keep] LayoutObject*);
253 253
254 [Timeline, Inline=FastReturn] 254 [Timeline, Inline=FastReturn]
255 void didScrollLayer(RenderObject*); 255 void didScrollLayer(LayoutObject*);
256 256
257 [Timeline, Inline=FastReturn] 257 [Timeline, Inline=FastReturn]
258 void willPaint([Keep] RenderObject*, const GraphicsLayer*); 258 void willPaint([Keep] LayoutObject*, const GraphicsLayer*);
259 259
260 [Timeline, Page, LayerTree, Inline=FastReturn] 260 [Timeline, Page, LayerTree, Inline=FastReturn]
261 void didPaint([Keep] RenderObject*, const GraphicsLayer*, GraphicsContext*, const LayoutRect&); 261 void didPaint([Keep] LayoutObject*, const GraphicsLayer*, GraphicsContext*, const LayoutRect&);
262 262
263 [Timeline, Inline=FastReturn] 263 [Timeline, Inline=FastReturn]
264 void willPaintImage([Keep] RenderImage*); 264 void willPaintImage([Keep] RenderImage*);
265 265
266 [Timeline, Inline=FastReturn] 266 [Timeline, Inline=FastReturn]
267 void didPaintImage(RenderImage*); 267 void didPaintImage(RenderImage*);
268 268
269 [Resource, Timeline, Inline=FastReturn] 269 [Resource, Timeline, Inline=FastReturn]
270 InspectorInstrumentationCookie willRecalculateStyle([Keep] Document*); 270 InspectorInstrumentationCookie willRecalculateStyle([Keep] Document*);
271 271
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 interface InspectorCanvasInstrumentation { 533 interface InspectorCanvasInstrumentation {
534 534
535 #include "bindings/core/v8/ScriptValue.h" 535 #include "bindings/core/v8/ScriptValue.h"
536 536
537 [Canvas] 537 [Canvas]
538 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); 538 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
539 539
540 [Canvas] 540 [Canvas]
541 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); 541 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&);
542 } 542 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorInstrumentation.cpp ('k') | Source/core/inspector/InspectorLayerTreeAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698