Chromium Code Reviews| 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 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); | 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); | 512 void consoleProfileEnd(ExecutionContext* context, const String& title); |
| 513 | |
| 514 //FIXME: remove when we move everything from InspectorConsoleAgent to FrameC onsole | |
|
vsevik
2014/08/12 15:46:07
s/everything/console message storage/
sergeyv
2014/08/12 16:00:58
Done.
| |
| 515 [Console] | |
| 516 void notifyWorkerGlobalScopeTerminated(ExecutionContext* context, WorkerGlob alScopeProxy* proxy); | |
|
vsevik
2014/08/12 15:49:54
adoptWorkerConsoleMessages
sergeyv
2014/08/12 16:00:59
Done.
| |
| 513 } | 517 } |
| 514 | 518 |
| 515 interface InspectorOverrides { | 519 interface InspectorOverrides { |
| 516 [CSS, Inline=FastReturn] | 520 [CSS, Inline=FastReturn] |
| 517 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState); | 521 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState); |
| 518 | 522 |
| 519 [Worker, Inline=FastReturn] | 523 [Worker, Inline=FastReturn] |
| 520 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 524 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
| 521 } | 525 } |
| 522 | 526 |
| 523 | 527 |
| 524 interface InspectorCanvasInstrumentation { | 528 interface InspectorCanvasInstrumentation { |
| 525 | 529 |
| 526 #include "bindings/core/v8/ScriptValue.h" | 530 #include "bindings/core/v8/ScriptValue.h" |
| 527 | 531 |
| 528 [Canvas] | 532 [Canvas] |
| 529 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); | 533 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); |
| 530 | 534 |
| 531 [Canvas] | 535 [Canvas] |
| 532 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); | 536 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); |
| 533 } | 537 } |
| OLD | NEW |