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

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

Issue 1135203007: Oilpan: fix build after r195398. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/FetchEvent.cpp
diff --git a/Source/modules/serviceworkers/FetchEvent.cpp b/Source/modules/serviceworkers/FetchEvent.cpp
index 1d7767cf6adad8e843eeaacc88d131214b231b6b..1765234b0e15a4f63497b23535425576ff08e24f 100644
--- a/Source/modules/serviceworkers/FetchEvent.cpp
+++ b/Source/modules/serviceworkers/FetchEvent.cpp
@@ -72,8 +72,9 @@ FetchEvent::FetchEvent(const AtomicString& type, const FetchEventInit& initializ
DEFINE_TRACE(FetchEvent)
{
- visitor->trace(m_request);
visitor->trace(m_observer);
+ visitor->trace(m_request);
+ visitor->trace(m_client);
ExtendableEvent::trace(visitor);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698