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

Side by Side Diff: Source/core/inspector/InspectorInstrumentation.idl

Issue 927773002: Keep track of multiple layout roots (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add bug link Created 5 years, 9 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
« no previous file with comments | « Source/core/frame/LocalFrame.cpp ('k') | Source/core/inspector/InspectorPageAgent.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 [PageRuntime, Inline=FastReturn] 200 [PageRuntime, Inline=FastReturn]
201 void willReleaseScriptContext([Keep] LocalFrame*, ScriptState*); 201 void willReleaseScriptContext([Keep] LocalFrame*, ScriptState*);
202 202
203 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] 203 [AsyncCallTracker, DOMDebugger, Inline=FastReturn]
204 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t imerId); 204 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t imerId);
205 205
206 [AsyncCallTracker, Debugger, Inline=FastReturn] 206 [AsyncCallTracker, Debugger, Inline=FastReturn]
207 void didFireTimer(const InspectorInstrumentationCookie&); 207 void didFireTimer(const InspectorInstrumentationCookie&);
208 208
209 [Page, Inline=FastReturn] 209 [Page, Inline=FastReturn]
210 void didLayout(LocalFrame*, LayoutObject* root); 210 void didLayout(LocalFrame*);
211 211
212 [Page, Inline=FastReturn] 212 [Page, Inline=FastReturn]
213 void didScroll(LocalFrame*); 213 void didScroll(LocalFrame*);
214 214
215 [Page, Inline=FastReturn] 215 [Page, Inline=FastReturn]
216 void didResizeMainFrame(LocalFrame*); 216 void didResizeMainFrame(LocalFrame*);
217 217
218 [AsyncCallTracker, Inline=FastReturn] 218 [AsyncCallTracker, Inline=FastReturn]
219 void didDispatchXHRLoadendEvent(ExecutionContext*, XMLHttpRequest*); 219 void didDispatchXHRLoadendEvent(ExecutionContext*, XMLHttpRequest*);
220 220
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 interface InspectorCanvasInstrumentation { 466 interface InspectorCanvasInstrumentation {
467 467
468 #include "bindings/core/v8/ScriptValue.h" 468 #include "bindings/core/v8/ScriptValue.h"
469 469
470 [Canvas] 470 [Canvas]
471 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); 471 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
472 472
473 [Canvas] 473 [Canvas]
474 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); 474 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&);
475 } 475 }
OLDNEW
« no previous file with comments | « Source/core/frame/LocalFrame.cpp ('k') | Source/core/inspector/InspectorPageAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698