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

Unified Diff: Source/modules/cachestorage/Cache.cpp

Issue 1214103002: Oilpan: fix build after r197958. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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/cachestorage/Cache.cpp
diff --git a/Source/modules/cachestorage/Cache.cpp b/Source/modules/cachestorage/Cache.cpp
index 8a6d65ea6132c018f2bb19007a4ce6b435da63f5..bc3e950c758ba8c18ff00eccee5913b2ad3cbdbf 100644
--- a/Source/modules/cachestorage/Cache.cpp
+++ b/Source/modules/cachestorage/Cache.cpp
@@ -212,13 +212,14 @@ public:
DEFINE_INLINE_VIRTUAL_TRACE()
{
visitor->trace(m_cache);
+ visitor->trace(m_resolver);
}
private:
bool m_completed = false;
int m_numberOfRemainingOperations;
Member<Cache> m_cache;
- RefPtrWillBePersistent<ScriptPromiseResolver> m_resolver;
+ RefPtrWillBeMember<ScriptPromiseResolver> m_resolver;
Vector<WebServiceWorkerCache::BatchOperation> m_batchOperations;
};
« 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