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

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: rebased 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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 Other: "other", 470 Other: "other",
471 Deprecation: "deprecation", 471 Deprecation: "deprecation",
472 Worker: "worker" 472 Worker: "worker"
473 } 473 }
474 474
475 /** 475 /**
476 * @enum {string} 476 * @enum {string}
477 */ 477 */
478 WebInspector.ConsoleMessage.MessageType = { 478 WebInspector.ConsoleMessage.MessageType = {
479 Log: "log", 479 Log: "log",
480 Debug: "debug",
481 Info: "info",
482 Error: "error",
483 Warning: "warning",
480 Dir: "dir", 484 Dir: "dir",
481 DirXML: "dirxml", 485 DirXML: "dirxml",
482 Table: "table", 486 Table: "table",
483 Trace: "trace", 487 Trace: "trace",
484 Clear: "clear", 488 Clear: "clear",
485 StartGroup: "startGroup", 489 StartGroup: "startGroup",
486 StartGroupCollapsed: "startGroupCollapsed", 490 StartGroupCollapsed: "startGroupCollapsed",
487 EndGroup: "endGroup", 491 EndGroup: "endGroup",
488 Assert: "assert", 492 Assert: "assert",
493 Count: "count",
kozy 2016/07/13 18:26:39 Why count is here?
dgozman 2016/07/13 21:08:07 Removed.
489 Result: "result", 494 Result: "result",
490 Profile: "profile", 495 Profile: "profile",
491 ProfileEnd: "profileEnd", 496 ProfileEnd: "profileEnd",
492 Command: "command" 497 Command: "command"
493 } 498 }
494 499
495 /** 500 /**
496 * @enum {string} 501 * @enum {string}
497 */ 502 */
498 WebInspector.ConsoleMessage.MessageLevel = { 503 WebInspector.ConsoleMessage.MessageLevel = {
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 this.dispatchEventToListeners(WebInspector.ConsoleModel.Events.CommandEv aluated, event.data); 652 this.dispatchEventToListeners(WebInspector.ConsoleModel.Events.CommandEv aluated, event.data);
648 }, 653 },
649 654
650 __proto__: WebInspector.Object.prototype 655 __proto__: WebInspector.Object.prototype
651 } 656 }
652 657
653 /** 658 /**
654 * @type {!WebInspector.MultitargetConsoleModel} 659 * @type {!WebInspector.MultitargetConsoleModel}
655 */ 660 */
656 WebInspector.multitargetConsoleModel; 661 WebInspector.multitargetConsoleModel;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698