| OLD | NEW |
| 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 Loading... |
| 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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 | 527 |
| 531 interface InspectorOverrides { | 528 interface InspectorOverrides { |
| 532 [CSS, Inline=FastReturn] | 529 [CSS, Inline=FastReturn] |
| 533 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 530 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
| 534 | 531 |
| 535 [Worker, Inline=FastReturn] | 532 [Worker, Inline=FastReturn] |
| 536 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 533 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
| 537 | 534 |
| 538 [Page, Inline=FastReturn] | 535 [Page, Inline=FastReturn] |
| 539 GeolocationPosition* overrideGeolocationPosition(Page* page, [DefaultReturn]
GeolocationPosition* position); | 536 GeolocationPosition* overrideGeolocationPosition(Page* page, [DefaultReturn]
GeolocationPosition* position); |
| 540 | |
| 541 [Page, Inline=FastReturn] | |
| 542 float overrideFontScaleFactor(Page* page, [DefaultReturn] float fontScaleFac
tor); | |
| 543 | |
| 544 [Page, Inline=FastReturn] | |
| 545 bool overrideTextAutosizing(Page* page, [DefaultReturn] bool textAutosizing)
; | |
| 546 } | 537 } |
| 547 | 538 |
| 548 | 539 |
| 549 interface InspectorCanvasInstrumentation { | 540 interface InspectorCanvasInstrumentation { |
| 550 | 541 |
| 551 #include "bindings/v8/ScriptObject.h" | 542 #include "bindings/v8/ScriptObject.h" |
| 552 | 543 |
| 553 [Canvas] | 544 [Canvas] |
| 554 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); | 545 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); |
| 555 | 546 |
| 556 [Canvas] | 547 [Canvas] |
| 557 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); | 548 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); |
| 558 } | 549 } |
| OLD | NEW |