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

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

Issue 376213002: DevTools: Make FrameConsole methods accept ConsoleMessage objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@scriptFailedToParse
Patch Set: 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
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 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 [Debugger, Inline=FastReturn] 473 [Debugger, Inline=FastReturn]
474 InspectorInstrumentationCookie traceAsyncCallbackStarting([Keep] ExecutionCo ntext*, int operationId); 474 InspectorInstrumentationCookie traceAsyncCallbackStarting([Keep] ExecutionCo ntext*, int operationId);
475 475
476 [Debugger, Inline=FastReturn] 476 [Debugger, Inline=FastReturn]
477 void traceAsyncCallbackCompleted(const InspectorInstrumentationCookie&); 477 void traceAsyncCallbackCompleted(const InspectorInstrumentationCookie&);
478 } 478 }
479 479
480 interface InspectorConsoleInstrumentation { 480 interface InspectorConsoleInstrumentation {
481 481
482 #include "core/inspector/ScriptArguments.h" 482 #include "core/inspector/ScriptArguments.h"
483 #include "core/inspector/ScriptCallStack.h"
484 483
485 // FIXME: Convert to ScriptArguments to match non-worker context. 484 class ConsoleMessage;
486 // Use the same implementation as above as a similar method dispatched on Pa ge.
487 [Console]
488 void addMessageToConsole(ExecutionContext* context, MessageSource source, Me ssageType type, MessageLevel level, const String& message, PassRefPtrWillBeRawPt r<ScriptCallStack> callStack, unsigned long requestIdentifier = 0);
489 485
490 // Use the same implementation as above as a similar method dispatched on Pa ge. 486 // Use the same implementation as above as a similar method dispatched on Pa ge.
491 [Console] 487 [Console]
492 void addMessageToConsole(ExecutionContext* context, MessageSource source, Me ssageType type, MessageLevel level, const String& message, const String& scriptI d, unsigned lineNumber, unsigned columnNumber, ScriptState* state, unsigned long requestIdentifier = 0); 488 void addMessageToConsole(ExecutionContext* context, ConsoleMessage* consoleM essage);
493 489
494 [Console, Debugger] 490 [Console, Debugger]
495 void addConsoleAPIMessageToConsole(ExecutionContext* context, MessageType ty pe, MessageLevel level, const String& message, ScriptState* state, PassRefPtrWil lBeRawPtr<ScriptArguments> arguments, unsigned long requestIdentifier = 0); 491 void addConsoleAPIMessageToConsole(ExecutionContext* context, MessageType ty pe, MessageLevel level, const String& message, ScriptState* state, PassRefPtrWil lBeRawPtr<ScriptArguments> arguments, unsigned long requestIdentifier = 0);
496 492
497 [Console] 493 [Console]
498 void consoleCount(ExecutionContext* context, ScriptState* state, PassRefPtrW illBeRawPtr<ScriptArguments> arguments); 494 void consoleCount(ExecutionContext* context, ScriptState* state, PassRefPtrW illBeRawPtr<ScriptArguments> arguments);
499 495
500 [Timeline, Console] 496 [Timeline, Console]
501 void consoleTime([Keep] ExecutionContext* context, const String& title); 497 void consoleTime([Keep] ExecutionContext* context, const String& title);
502 498
(...skipping 28 matching lines...) Expand all
531 interface InspectorCanvasInstrumentation { 527 interface InspectorCanvasInstrumentation {
532 528
533 #include "bindings/core/v8/ScriptValue.h" 529 #include "bindings/core/v8/ScriptValue.h"
534 530
535 [Canvas] 531 [Canvas]
536 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); 532 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
537 533
538 [Canvas] 534 [Canvas]
539 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); 535 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&);
540 } 536 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorConsoleAgent.cpp ('k') | Source/core/inspector/InspectorTimelineAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698