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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sdk/ConsoleModel.js

Issue 2139543002: [DevTools] Report console API calls through Runtime. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tests pass Created 4 years, 5 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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 Other: "other", 445 Other: "other",
446 Deprecation: "deprecation", 446 Deprecation: "deprecation",
447 Worker: "worker" 447 Worker: "worker"
448 } 448 }
449 449
450 /** 450 /**
451 * @enum {string} 451 * @enum {string}
452 */ 452 */
453 WebInspector.ConsoleMessage.MessageType = { 453 WebInspector.ConsoleMessage.MessageType = {
454 Log: "log", 454 Log: "log",
455 Debug: "debug",
456 Info: "info",
457 Error: "error",
458 Warning: "warning",
455 Dir: "dir", 459 Dir: "dir",
456 DirXML: "dirxml", 460 DirXML: "dirxml",
457 Table: "table", 461 Table: "table",
458 Trace: "trace", 462 Trace: "trace",
459 Clear: "clear", 463 Clear: "clear",
460 StartGroup: "startGroup", 464 StartGroup: "startGroup",
461 StartGroupCollapsed: "startGroupCollapsed", 465 StartGroupCollapsed: "startGroupCollapsed",
462 EndGroup: "endGroup", 466 EndGroup: "endGroup",
463 Assert: "assert", 467 Assert: "assert",
468 Count: "count",
464 Result: "result", 469 Result: "result",
465 Profile: "profile", 470 Profile: "profile",
466 ProfileEnd: "profileEnd", 471 ProfileEnd: "profileEnd",
467 Command: "command" 472 Command: "command"
468 } 473 }
469 474
470 /** 475 /**
471 * @enum {string} 476 * @enum {string}
472 */ 477 */
473 WebInspector.ConsoleMessage.MessageLevel = { 478 WebInspector.ConsoleMessage.MessageLevel = {
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 this.dispatchEventToListeners(WebInspector.ConsoleModel.Events.CommandEv aluated, event.data); 627 this.dispatchEventToListeners(WebInspector.ConsoleModel.Events.CommandEv aluated, event.data);
623 }, 628 },
624 629
625 __proto__: WebInspector.Object.prototype 630 __proto__: WebInspector.Object.prototype
626 } 631 }
627 632
628 /** 633 /**
629 * @type {!WebInspector.MultitargetConsoleModel} 634 * @type {!WebInspector.MultitargetConsoleModel}
630 */ 635 */
631 WebInspector.multitargetConsoleModel; 636 WebInspector.multitargetConsoleModel;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698