| 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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 | 488 |
| 489 [Timeline] | 489 [Timeline] |
| 490 void consoleTime([Keep] ExecutionContext* context, const String& title); | 490 void consoleTime([Keep] ExecutionContext* context, const String& title); |
| 491 | 491 |
| 492 [Timeline] | 492 [Timeline] |
| 493 void consoleTimeEnd([Keep] ExecutionContext* context, const String& title, S
criptState* state); | 493 void consoleTimeEnd([Keep] ExecutionContext* context, const String& title, S
criptState* state); |
| 494 | 494 |
| 495 [Timeline, Inline=FastReturn] | 495 [Timeline, Inline=FastReturn] |
| 496 void consoleTimeStamp([Keep] ExecutionContext* context, const String& title)
; | 496 void consoleTimeStamp([Keep] ExecutionContext* context, const String& title)
; |
| 497 | 497 |
| 498 [Console, Inline=FastReturn] | |
| 499 void consoleTimeline([Keep] ExecutionContext* context, const String& title,
ScriptState* state); | |
| 500 | |
| 501 [Console, Inline=FastReturn] | |
| 502 void consoleTimelineEnd([Keep] ExecutionContext* context, const String& titl
e, ScriptState* state); | |
| 503 | |
| 504 [Profiler, Inline=FastReturn] | 498 [Profiler, Inline=FastReturn] |
| 505 void consoleProfile([Keep] ExecutionContext* context, const String& title); | 499 void consoleProfile([Keep] ExecutionContext* context, const String& title); |
| 506 | 500 |
| 507 [Profiler, Inline=FastReturn] | 501 [Profiler, Inline=FastReturn] |
| 508 void consoleProfileEnd(ExecutionContext* context, const String& title); | 502 void consoleProfileEnd(ExecutionContext* context, const String& title); |
| 509 | 503 |
| 510 [Console] | 504 [Console] |
| 511 void consoleMessagesCleared(FrameHost* frameHost); | 505 void consoleMessagesCleared(FrameHost* frameHost); |
| 512 | 506 |
| 513 [Console] | 507 [Console] |
| (...skipping 15 matching lines...) Expand all Loading... |
| 529 interface InspectorCanvasInstrumentation { | 523 interface InspectorCanvasInstrumentation { |
| 530 | 524 |
| 531 #include "bindings/core/v8/ScriptValue.h" | 525 #include "bindings/core/v8/ScriptValue.h" |
| 532 | 526 |
| 533 [Canvas] | 527 [Canvas] |
| 534 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); | 528 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); |
| 535 | 529 |
| 536 [Canvas] | 530 [Canvas] |
| 537 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); | 531 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); |
| 538 } | 532 } |
| OLD | NEW |