Index: Source/core/inspector/InspectorConsoleAgent.h |
diff --git a/Source/core/inspector/InspectorConsoleAgent.h b/Source/core/inspector/InspectorConsoleAgent.h |
index 3242317a74268cbbc8be5ac15118311fe3d866e7..9eda28d9f08fce3bd6e55a21a90272d67d966484 100644 |
--- a/Source/core/inspector/InspectorConsoleAgent.h |
+++ b/Source/core/inspector/InspectorConsoleAgent.h |
@@ -32,6 +32,7 @@ |
#include "core/inspector/InspectorBaseAgent.h" |
#include "core/frame/ConsoleTypes.h" |
#include "wtf/Forward.h" |
+#include "wtf/HashCountedSet.h" |
#include "wtf/HashMap.h" |
#include "wtf/Noncopyable.h" |
#include "wtf/Vector.h" |
@@ -111,7 +112,7 @@ protected: |
ConsoleMessage* m_previousMessage; |
Vector<OwnPtr<ConsoleMessage> > m_consoleMessages; |
int m_expiredConsoleMessageCount; |
- HashMap<String, unsigned> m_counts; |
+ HashCountedSet<String> m_counts; |
HashMap<String, double> m_times; |
bool m_enabled; |
private: |