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