| 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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 SDK.ConsoleMessage.MessageSource = { | 491 SDK.ConsoleMessage.MessageSource = { |
| 492 XML: 'xml', | 492 XML: 'xml', |
| 493 JS: 'javascript', | 493 JS: 'javascript', |
| 494 Network: 'network', | 494 Network: 'network', |
| 495 ConsoleAPI: 'console-api', | 495 ConsoleAPI: 'console-api', |
| 496 Storage: 'storage', | 496 Storage: 'storage', |
| 497 AppCache: 'appcache', | 497 AppCache: 'appcache', |
| 498 Rendering: 'rendering', | 498 Rendering: 'rendering', |
| 499 CSS: 'css', | 499 CSS: 'css', |
| 500 Security: 'security', | 500 Security: 'security', |
| 501 Deprecation: 'deprecation', |
| 502 Worker: 'worker', |
| 501 Violation: 'violation', | 503 Violation: 'violation', |
| 502 Other: 'other', | 504 Intervention: 'intervention', |
| 503 Deprecation: 'deprecation', | 505 Other: 'other' |
| 504 Worker: 'worker' | |
| 505 }; | 506 }; |
| 506 | 507 |
| 507 /** | 508 /** |
| 508 * @enum {string} | 509 * @enum {string} |
| 509 */ | 510 */ |
| 510 SDK.ConsoleMessage.MessageType = { | 511 SDK.ConsoleMessage.MessageType = { |
| 511 Log: 'log', | 512 Log: 'log', |
| 512 Debug: 'debug', | 513 Debug: 'debug', |
| 513 Info: 'info', | 514 Info: 'info', |
| 514 Error: 'error', | 515 Error: 'error', |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 638 */ | 639 */ |
| 639 _commandEvaluated(event) { | 640 _commandEvaluated(event) { |
| 640 this.dispatchEventToListeners(SDK.ConsoleModel.Events.CommandEvaluated, even
t.data); | 641 this.dispatchEventToListeners(SDK.ConsoleModel.Events.CommandEvaluated, even
t.data); |
| 641 } | 642 } |
| 642 }; | 643 }; |
| 643 | 644 |
| 644 /** | 645 /** |
| 645 * @type {!SDK.MultitargetConsoleModel} | 646 * @type {!SDK.MultitargetConsoleModel} |
| 646 */ | 647 */ |
| 647 SDK.multitargetConsoleModel; | 648 SDK.multitargetConsoleModel; |
| OLD | NEW |