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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerGlobalScope.h

Issue 2609413002: Simplify WorkerGlobalScope::m_eventListeners. (Closed)
Patch Set: adjust deregister assert Created 3 years, 11 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 | « no previous file | third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
index 6b19d23264fff8c843e8f28be1130785f55894e9..24101502ba58f33c786f5e371118bebd7fdde4df 100644
--- a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
+++ b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.h
@@ -208,7 +208,7 @@ class CORE_EXPORT WorkerGlobalScope
const double m_timeOrigin;
- HeapListHashSet<Member<V8AbstractEventListener>> m_eventListeners;
+ HeapHashSet<Member<V8AbstractEventListener>> m_eventListeners;
HeapHashMap<int, Member<ErrorEvent>> m_pendingErrorEvents;
int m_lastPendingErrorEventId;
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698