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

Unified Diff: Source/devtools/front_end/ConsoleView.js

Issue 185713007: DevTools: Add timestamp support in the console (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/ConsoleModel.js ('k') | Source/devtools/front_end/ConsoleViewMessage.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/ConsoleView.js
diff --git a/Source/devtools/front_end/ConsoleView.js b/Source/devtools/front_end/ConsoleView.js
index bcfc64da5f850d1779798f1ac18171ec5744eec7..dc408459c9742cef2d544af9c94b9a479e45e67a 100644
--- a/Source/devtools/front_end/ConsoleView.js
+++ b/Source/devtools/front_end/ConsoleView.js
@@ -422,7 +422,7 @@ WebInspector.ConsoleView.prototype = {
this._urlToMessageCount[message.url] = 1;
if (this._previousMessage && !message.isGroupMessage() && message.isEqual(this._previousMessage)) {
- this._messageToViewMessage.get(this._previousMessage).incrementRepeatCount();
+ this._messageToViewMessage.get(this._previousMessage).incrementRepeatCount(message.timestamp);
apavlov 2014/03/26 11:53:10 I'd rename this method to avoid any confusion
return;
}
« no previous file with comments | « Source/devtools/front_end/ConsoleModel.js ('k') | Source/devtools/front_end/ConsoleViewMessage.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698