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

Side by Side Diff: Source/devtools/front_end/ConsoleModel.js

Issue 102003004: [DevTools] Do not filter manually entered commands in console. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed blank lines. Created 7 years 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 | Annotate | Revision Log
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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 DirXML: "dirxml", 248 DirXML: "dirxml",
249 Table: "table", 249 Table: "table",
250 Trace: "trace", 250 Trace: "trace",
251 Clear: "clear", 251 Clear: "clear",
252 StartGroup: "startGroup", 252 StartGroup: "startGroup",
253 StartGroupCollapsed: "startGroupCollapsed", 253 StartGroupCollapsed: "startGroupCollapsed",
254 EndGroup: "endGroup", 254 EndGroup: "endGroup",
255 Assert: "assert", 255 Assert: "assert",
256 Result: "result", 256 Result: "result",
257 Profile: "profile", 257 Profile: "profile",
258 ProfileEnd: "profileEnd" 258 ProfileEnd: "profileEnd",
259 Command: "command"
259 } 260 }
260 261
261 WebInspector.ConsoleMessage.MessageLevel = { 262 WebInspector.ConsoleMessage.MessageLevel = {
262 Log: "log", 263 Log: "log",
263 Info: "info", 264 Info: "info",
264 Warning: "warning", 265 Warning: "warning",
265 Error: "error", 266 Error: "error",
266 Debug: "debug" 267 Debug: "debug"
267 } 268 }
268 269
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 { 312 {
312 if (!WebInspector.settings.preserveConsoleLog.get()) 313 if (!WebInspector.settings.preserveConsoleLog.get())
313 this._console.clearMessages(); 314 this._console.clearMessages();
314 } 315 }
315 } 316 }
316 317
317 /** 318 /**
318 * @type {?WebInspector.ConsoleModel} 319 * @type {?WebInspector.ConsoleModel}
319 */ 320 */
320 WebInspector.console = null; 321 WebInspector.console = null;
OLDNEW
« no previous file with comments | « LayoutTests/inspector/console/console-filter-level-test-expected.txt ('k') | Source/devtools/front_end/ConsoleView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698