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

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

Issue 2623423004: DevTools: add interventions message source into log entries. (Closed)
Patch Set: same w/ frontend Created 3 years, 11 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
« no previous file with comments | « third_party/WebKit/Source/core/inspector/browser_protocol.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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;
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/inspector/browser_protocol.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698