| 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 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 474 void traceAsyncCallbackCompleted(const InspectorInstrumentationCookie&); | 474 void traceAsyncCallbackCompleted(const InspectorInstrumentationCookie&); |
| 475 } | 475 } |
| 476 | 476 |
| 477 interface InspectorConsoleInstrumentation { | 477 interface InspectorConsoleInstrumentation { |
| 478 | 478 |
| 479 #include "core/inspector/ScriptArguments.h" | 479 #include "core/inspector/ScriptArguments.h" |
| 480 | 480 |
| 481 class ConsoleMessage; | 481 class ConsoleMessage; |
| 482 | 482 |
| 483 [Console, Debugger] | 483 [Console, Debugger] |
| 484 void addMessageToConsole(ExecutionContext* context, ConsoleMessage* consoleM
essage); | 484 void addMessageToConsole(ExecutionContext* context, PassRefPtr<ConsoleMessag
e> consoleMessage); |
| 485 | 485 |
| 486 [Console] | 486 [Console] |
| 487 void consoleCount(ExecutionContext* context, ScriptState* state, PassRefPtrW
illBeRawPtr<ScriptArguments> arguments); | 487 void consoleCount(ExecutionContext* context, ScriptState* state, PassRefPtrW
illBeRawPtr<ScriptArguments> arguments); |
| 488 | 488 |
| 489 [Console, Timeline] | 489 [Console, Timeline] |
| 490 void consoleTime([Keep] ExecutionContext* context, const String& title); | 490 void consoleTime([Keep] ExecutionContext* context, const String& title); |
| 491 | 491 |
| 492 [Console, Timeline] | 492 [Console, 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 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 interface InspectorCanvasInstrumentation { | 527 interface InspectorCanvasInstrumentation { |
| 528 | 528 |
| 529 #include "bindings/core/v8/ScriptValue.h" | 529 #include "bindings/core/v8/ScriptValue.h" |
| 530 | 530 |
| 531 [Canvas] | 531 [Canvas] |
| 532 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); | 532 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); |
| 533 | 533 |
| 534 [Canvas] | 534 [Canvas] |
| 535 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); | 535 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); |
| 536 } | 536 } |
| OLD | NEW |