OLD | NEW |
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 Loading... |
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 Loading... |
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; |
OLD | NEW |