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

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

Issue 212953003: TimelinePanel: provide scriptId in FunctionCall event. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 [Timeline, Inline=FastReturn] 139 [Timeline, Inline=FastReturn]
140 void didScheduleResourceRequest([Keep] Document*, const String& url); 140 void didScheduleResourceRequest([Keep] Document*, const String& url);
141 141
142 [DOMDebugger, Debugger, Timeline, Inline=FastReturn] 142 [DOMDebugger, Debugger, Timeline, Inline=FastReturn]
143 void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, boo l singleShot); 143 void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, boo l singleShot);
144 144
145 [DOMDebugger, Debugger, Timeline, Inline=FastReturn] 145 [DOMDebugger, Debugger, Timeline, Inline=FastReturn]
146 void didRemoveTimer([Keep] ExecutionContext*, int timerId); 146 void didRemoveTimer([Keep] ExecutionContext*, int timerId);
147 147
148 [Timeline, Inline=FastReturn] 148 [Timeline, Inline=FastReturn]
149 InspectorInstrumentationCookie willCallFunction([Keep] ExecutionContext*, co nst String& scriptName, int scriptLine); 149 InspectorInstrumentationCookie willCallFunction([Keep] ExecutionContext*, in t scriptId, const String& scriptName, int scriptLine);
150 150
151 [Timeline, Inline=FastReturn] 151 [Timeline, Inline=FastReturn]
152 void didCallFunction(const InspectorInstrumentationCookie&); 152 void didCallFunction(const InspectorInstrumentationCookie&);
153 153
154 [Timeline, Inline=FastReturn] 154 [Timeline, Inline=FastReturn]
155 InspectorInstrumentationCookie willDispatchXHRReadyStateChangeEvent([Keep] E xecutionContext*, XMLHttpRequest*); 155 InspectorInstrumentationCookie willDispatchXHRReadyStateChangeEvent([Keep] E xecutionContext*, XMLHttpRequest*);
156 156
157 [Timeline, Inline=FastReturn] 157 [Timeline, Inline=FastReturn]
158 void didDispatchXHRReadyStateChangeEvent(const InspectorInstrumentationCooki e&); 158 void didDispatchXHRReadyStateChangeEvent(const InspectorInstrumentationCooki e&);
159 159
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 534
535 [Debugger, Inline=FastReturn] 535 [Debugger, Inline=FastReturn]
536 void didCreatePromise(ExecutionContext*, const ScriptObject& promise); 536 void didCreatePromise(ExecutionContext*, const ScriptObject& promise);
537 537
538 [Debugger, Inline=FastReturn] 538 [Debugger, Inline=FastReturn]
539 void didUpdatePromiseParent(ExecutionContext*, const ScriptObject& promise, const ScriptObject& parentPromise); 539 void didUpdatePromiseParent(ExecutionContext*, const ScriptObject& promise, const ScriptObject& parentPromise);
540 540
541 [Debugger, Inline=FastReturn] 541 [Debugger, Inline=FastReturn]
542 void didUpdatePromiseState(ExecutionContext*, const ScriptObject& promise, V 8PromiseCustom::PromiseState, const ScriptValue& result); 542 void didUpdatePromiseState(ExecutionContext*, const ScriptObject& promise, V 8PromiseCustom::PromiseState, const ScriptValue& result);
543 } 543 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698