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

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

Issue 464293002: [DevTools] ConsoleMessage storage moved from ConsoleAgent (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@remove-can-generate
Patch Set: Rebased 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 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 // Use the same implementation as above as a similar method dispatched on Pa ge. 483 // Use the same implementation as above as a similar method dispatched on Pa ge.
vsevik 2014/08/14 08:06:22 This comment seems obsolete.
kozyatinskiy1 2014/08/20 13:44:18 Done.
484 [Console] 484 [Console]
485 void addMessageToConsole(ExecutionContext* context, ConsoleMessage* consoleM essage); 485 void addMessageToConsole(ExecutionContext* context, PassRefPtr<ConsoleMessag e> consoleMessage);
486 486
487 [Console, Debugger] 487 [Console, Debugger]
488 void addConsoleAPIMessageToConsole(ExecutionContext* context, MessageType ty pe, MessageLevel level, const String& message, ScriptState* state, PassRefPtrWil lBeRawPtr<ScriptArguments> arguments, unsigned long requestIdentifier = 0); 488 void addConsoleAPIMessageToConsole(ExecutionContext* context, MessageType ty pe, MessageLevel level, const String& message, ScriptState* state, PassRefPtrWil lBeRawPtr<ScriptArguments> arguments, unsigned long requestIdentifier = 0);
489 489
490 [Console] 490 [Console]
491 void consoleCount(ExecutionContext* context, ScriptState* state, PassRefPtrW illBeRawPtr<ScriptArguments> arguments); 491 void consoleCount(ExecutionContext* context, ScriptState* state, PassRefPtrW illBeRawPtr<ScriptArguments> arguments);
492 492
493 [Timeline, Console] 493 [Timeline, Console]
494 void consoleTime([Keep] ExecutionContext* context, const String& title); 494 void consoleTime([Keep] ExecutionContext* context, const String& title);
495 495
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 interface InspectorCanvasInstrumentation { 528 interface InspectorCanvasInstrumentation {
529 529
530 #include "bindings/core/v8/ScriptValue.h" 530 #include "bindings/core/v8/ScriptValue.h"
531 531
532 [Canvas] 532 [Canvas]
533 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); 533 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
534 534
535 [Canvas] 535 [Canvas]
536 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); 536 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&);
537 } 537 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698