| 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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 [Timeline, Inline=FastReturn] | 499 [Timeline, Inline=FastReturn] |
| 500 void consoleTimeStamp([Keep] ExecutionContext* context, const String& title)
; | 500 void consoleTimeStamp([Keep] ExecutionContext* context, const String& title)
; |
| 501 | 501 |
| 502 [Console, Inline=FastReturn] | 502 [Console, Inline=FastReturn] |
| 503 void consoleTimeline([Keep] ExecutionContext* context, const String& title,
ScriptState* state); | 503 void consoleTimeline([Keep] ExecutionContext* context, const String& title,
ScriptState* state); |
| 504 | 504 |
| 505 [Console, Inline=FastReturn] | 505 [Console, Inline=FastReturn] |
| 506 void consoleTimelineEnd([Keep] ExecutionContext* context, const String& titl
e, ScriptState* state); | 506 void consoleTimelineEnd([Keep] ExecutionContext* context, const String& titl
e, ScriptState* state); |
| 507 | 507 |
| 508 [Profiler, Inline=FastReturn] | 508 [Profiler, Inline=FastReturn] |
| 509 void consoleProfile([Keep] ExecutionContext* context, const String& title, S
criptState* state); | 509 void consoleProfile([Keep] ExecutionContext* context, const String& title); |
| 510 | 510 |
| 511 [Profiler, Inline=FastReturn] | 511 [Profiler, Inline=FastReturn] |
| 512 void consoleProfileEnd(ExecutionContext* context, const String& title, Scrip
tState* state); | 512 void consoleProfileEnd(ExecutionContext* context, const String& title); |
| 513 } | 513 } |
| 514 | 514 |
| 515 interface InspectorOverrides { | 515 interface InspectorOverrides { |
| 516 [CSS, Inline=FastReturn] | 516 [CSS, Inline=FastReturn] |
| 517 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 517 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
| 518 | 518 |
| 519 [Worker, Inline=FastReturn] | 519 [Worker, Inline=FastReturn] |
| 520 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 520 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
| 521 } | 521 } |
| 522 | 522 |
| 523 | 523 |
| 524 interface InspectorCanvasInstrumentation { | 524 interface InspectorCanvasInstrumentation { |
| 525 | 525 |
| 526 #include "bindings/core/v8/ScriptValue.h" | 526 #include "bindings/core/v8/ScriptValue.h" |
| 527 | 527 |
| 528 [Canvas] | 528 [Canvas] |
| 529 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); | 529 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); |
| 530 | 530 |
| 531 [Canvas] | 531 [Canvas] |
| 532 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); | 532 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); |
| 533 } | 533 } |
| OLD | NEW |