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

Unified Diff: Source/core/inspector/ConsoleMessage.h

Issue 185713007: DevTools: Add timestamp support in the console (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Up for review 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
Index: Source/core/inspector/ConsoleMessage.h
diff --git a/Source/core/inspector/ConsoleMessage.h b/Source/core/inspector/ConsoleMessage.h
index 430fe13a31d54b23ec504468d4f836c39bd53a70..4fa9d08c74b77011a69728334c52ef2976a4d85f 100644
--- a/Source/core/inspector/ConsoleMessage.h
+++ b/Source/core/inspector/ConsoleMessage.h
@@ -57,10 +57,7 @@ public:
~ConsoleMessage();
void addToFrontend(InspectorFrontend::Console*, InjectedScriptManager*, bool generatePreview);
- void updateRepeatCountInConsole(InspectorFrontend::Console*);
- void incrementCount();
void setTimestamp(double timestamp) { m_timestamp = timestamp; }
- bool isEqual(ConsoleMessage* msg) const;
MessageType type() const { return m_type; }
@@ -80,7 +77,6 @@ private:
String m_url;
unsigned m_line;
unsigned m_column;
- unsigned m_repeatCount;
String m_requestId;
double m_timestamp;
};

Powered by Google App Engine
This is Rietveld 408576698