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

Unified Diff: Source/modules/serviceworkers/ServiceWorkerRegistration.cpp

Issue 458053004: Oilpan: fix build after r179903. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | « Source/modules/serviceworkers/ServiceWorkerRegistration.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/ServiceWorkerRegistration.cpp
diff --git a/Source/modules/serviceworkers/ServiceWorkerRegistration.cpp b/Source/modules/serviceworkers/ServiceWorkerRegistration.cpp
index a1931de787191456eefd1d3fa9804697c8f95441..ed64100f932e181505add1178506e4b8efb8f8f9 100644
--- a/Source/modules/serviceworkers/ServiceWorkerRegistration.cpp
+++ b/Source/modules/serviceworkers/ServiceWorkerRegistration.cpp
@@ -145,4 +145,12 @@ ServiceWorkerRegistration::ServiceWorkerRegistration(ExecutionContext* execution
m_outerRegistration->setProxy(this);
}
+void ServiceWorkerRegistration::trace(Visitor* visitor)
+{
+ visitor->trace(m_installing);
+ visitor->trace(m_waiting);
+ visitor->trace(m_active);
+ EventTargetWithInlineData::trace(visitor);
+}
+
} // namespace blink
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerRegistration.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698