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

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

Issue 146683003: Settings should not call into inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: incorporated review comments Created 6 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
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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 210
211 [Debugger, Inline=FastReturn] 211 [Debugger, Inline=FastReturn]
212 void didPerformPromiseTask(const InspectorInstrumentationCookie&); 212 void didPerformPromiseTask(const InspectorInstrumentationCookie&);
213 213
214 [Timeline, Inline=FastReturn] 214 [Timeline, Inline=FastReturn]
215 InspectorInstrumentationCookie willEvaluateScript([Keep] Frame*, const Strin g& url, int lineNumber); 215 InspectorInstrumentationCookie willEvaluateScript([Keep] Frame*, const Strin g& url, int lineNumber);
216 216
217 [Timeline, Inline=FastReturn] 217 [Timeline, Inline=FastReturn]
218 void didEvaluateScript(const InspectorInstrumentationCookie&); 218 void didEvaluateScript(const InspectorInstrumentationCookie&);
219 219
220 [Page, Inline=FastReturn]
221 void scriptsEnabled(Page*, bool isEnabled);
222
223 [PageRuntime, Inline=FastReturn] 220 [PageRuntime, Inline=FastReturn]
224 void didCreateIsolatedContext([Keep] Frame*, ScriptState*, SecurityOrigin*); 221 void didCreateIsolatedContext([Keep] Frame*, ScriptState*, SecurityOrigin*);
225 222
226 [DOMDebugger, Debugger, Timeline, Inline=FastReturn] 223 [DOMDebugger, Debugger, Timeline, Inline=FastReturn]
227 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t imerId); 224 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t imerId);
228 225
229 [Debugger, Timeline, Inline=FastReturn] 226 [Debugger, Timeline, Inline=FastReturn]
230 void didFireTimer(const InspectorInstrumentationCookie&); 227 void didFireTimer(const InspectorInstrumentationCookie&);
231 228
232 [Timeline, Inline=FastReturn] 229 [Timeline, Inline=FastReturn]
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 interface InspectorCanvasInstrumentation { 543 interface InspectorCanvasInstrumentation {
547 544
548 #include "bindings/v8/ScriptObject.h" 545 #include "bindings/v8/ScriptObject.h"
549 546
550 [Canvas] 547 [Canvas]
551 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&); 548 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&);
552 549
553 [Canvas] 550 [Canvas]
554 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&); 551 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&);
555 } 552 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorController.cpp ('k') | Source/core/inspector/InspectorPageAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698