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

Unified Diff: webkit/port/page/inspector/InspectorController.cpp

Issue 14458: Removed the use of the ConsoleMessage::operator== as it has been responsible ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/port/page/inspector/InspectorController.cpp
===================================================================
--- webkit/port/page/inspector/InspectorController.cpp (revision 7051)
+++ webkit/port/page/inspector/InspectorController.cpp (working copy)
@@ -845,12 +845,8 @@
m_consoleMessages.remove(0);
delete msg;
}
- if (m_previousMessage && *m_previousMessage == *consoleMessage) {
- ++m_previousMessage->repeatCount;
- } else {
- m_previousMessage = consoleMessage;
- m_consoleMessages.append(consoleMessage);
- }
+ m_previousMessage = consoleMessage;
+ m_consoleMessages.append(consoleMessage);
if (windowVisible())
addScriptConsoleMessage(m_previousMessage);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698