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

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

Issue 272613002: DevTools: implemented scriptFailedToParse protocol event (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 451
452 // FIXME: Convert to ScriptArguments to match non-worker context. 452 // FIXME: Convert to ScriptArguments to match non-worker context.
453 // Use the same implementation as above as a similar method dispatched on Pa ge. 453 // Use the same implementation as above as a similar method dispatched on Pa ge.
454 [Console] 454 [Console]
455 void addMessageToConsole(ExecutionContext* context, MessageSource source, Me ssageType type, MessageLevel level, const String& message, PassRefPtr<ScriptCall Stack> callStack, unsigned long requestIdentifier = 0); 455 void addMessageToConsole(ExecutionContext* context, MessageSource source, Me ssageType type, MessageLevel level, const String& message, PassRefPtr<ScriptCall Stack> callStack, unsigned long requestIdentifier = 0);
456 456
457 // Use the same implementation as above as a similar method dispatched on Pa ge. 457 // Use the same implementation as above as a similar method dispatched on Pa ge.
458 [Console] 458 [Console]
459 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); 459 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);
460 460
461 [Console]
462 void addMessageToConsole(ExecutionContext* context, MessageSource source, Me ssageType type, MessageLevel level, const String& message, const String& scriptI d, unsigned lineNumber, unsigned columnNumber, PassRefPtr<ScriptCallStack> callS tack, ScriptState* state, unsigned long requestIdentifier = 0);
463
461 [Console, Debugger] 464 [Console, Debugger]
462 void addMessageToConsole(ExecutionContext* context, MessageSource source, Me ssageType type, MessageLevel level, const String& message, ScriptState* state, P assRefPtr<ScriptArguments> arguments, unsigned long requestIdentifier = 0); 465 void addMessageToConsole(ExecutionContext* context, MessageSource source, Me ssageType type, MessageLevel level, const String& message, ScriptState* state, P assRefPtr<ScriptArguments> arguments, unsigned long requestIdentifier = 0);
463 466
464 [Console] 467 [Console]
465 void consoleCount(ExecutionContext* context, ScriptState* state, PassRefPtr< ScriptArguments> arguments); 468 void consoleCount(ExecutionContext* context, ScriptState* state, PassRefPtr< ScriptArguments> arguments);
466 469
467 [Timeline, Console] 470 [Timeline, Console]
468 void consoleTime([Keep] ExecutionContext* context, const String& title); 471 void consoleTime([Keep] ExecutionContext* context, const String& title);
469 472
470 [Console, Timeline] 473 [Console, Timeline]
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 529
527 [Debugger, Inline=FastReturn] 530 [Debugger, Inline=FastReturn]
528 void didCreatePromise(ExecutionContext*, const ScriptObject& promise); 531 void didCreatePromise(ExecutionContext*, const ScriptObject& promise);
529 532
530 [Debugger, Inline=FastReturn] 533 [Debugger, Inline=FastReturn]
531 void didUpdatePromiseParent(ExecutionContext*, const ScriptObject& promise, const ScriptObject& parentPromise); 534 void didUpdatePromiseParent(ExecutionContext*, const ScriptObject& promise, const ScriptObject& parentPromise);
532 535
533 [Debugger, Inline=FastReturn] 536 [Debugger, Inline=FastReturn]
534 void didUpdatePromiseState(ExecutionContext*, const ScriptObject& promise, V 8PromiseCustom::PromiseState, const ScriptValue& result); 537 void didUpdatePromiseState(ExecutionContext*, const ScriptObject& promise, V 8PromiseCustom::PromiseState, const ScriptValue& result);
535 } 538 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698