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

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

Issue 1851743002: Simplify Supplementables post Oilpan. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix component build Created 4 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: third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
diff --git a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
index acff95c7d2a19f1852dd5209679097d4c75dbaca..ea59969cb18c73f9a5785e42558b11a378130a80 100644
--- a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
+++ b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.cpp
@@ -411,7 +411,6 @@ v8::Local<v8::Object> WorkerGlobalScope::associateWithWrapper(v8::Isolate*, cons
DEFINE_TRACE(WorkerGlobalScope)
{
-#if ENABLE(OILPAN)
visitor->trace(m_console);
visitor->trace(m_location);
visitor->trace(m_navigator);
@@ -423,11 +422,10 @@ DEFINE_TRACE(WorkerGlobalScope)
visitor->trace(m_messageStorage);
visitor->trace(m_pendingMessages);
visitor->trace(m_eventListeners);
- HeapSupplementable<WorkerGlobalScope>::trace(visitor);
-#endif
ExecutionContext::trace(visitor);
EventTargetWithInlineData::trace(visitor);
SecurityContext::trace(visitor);
+ Supplementable<WorkerGlobalScope>::trace(visitor);
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/workers/WorkerGlobalScope.h ('k') | third_party/WebKit/Source/core/workers/WorkerNavigator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698