Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Side by Side Diff: Source/core/inspector/InspectorInstrumentation.idl

Issue 466753002: DevTools: Do not push to frontend messages from worker while it is alive (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix test Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 console message storage from InspectorConsoleAg ent to FrameConsole
515 [Console]
516 void adoptWorkerConsoleMessages(ExecutionContext* context, WorkerGlobalScope Proxy* proxy);
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 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorConsoleMessage.cpp ('k') | Source/core/workers/WorkerMessagingProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698