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

Unified Diff: Source/modules/serviceworkers/ServiceWorkerGlobalScope.h

Issue 1197763002: Oilpan: keep StashedPortCollection always on the heap. (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 | Source/modules/serviceworkers/ServiceWorkerGlobalScope.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
diff --git a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
index fcd3d1816c319af2d8f159a2f80d2e3dc976d4de..c6d02f93232c4757de277a6b4c6944282c29bdfd 100644
--- a/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
+++ b/Source/modules/serviceworkers/ServiceWorkerGlobalScope.h
@@ -68,7 +68,7 @@ public:
// ServiceWorkerGlobalScope.idl
ServiceWorkerClients* clients();
ServiceWorkerRegistration* registration();
- PassRefPtrWillBeRawPtr<StashedPortCollection> ports();
+ StashedPortCollection* ports();
ScriptPromise fetch(ScriptState*, const RequestInfo&, const Dictionary&, ExceptionState&);
@@ -104,7 +104,7 @@ private:
PersistentWillBeMember<ServiceWorkerClients> m_clients;
PersistentWillBeMember<ServiceWorkerRegistration> m_registration;
- RefPtrWillBeMember<StashedPortCollection> m_ports;
+ PersistentWillBeMember<StashedPortCollection> m_ports;
bool m_didEvaluateScript;
bool m_hadErrorInTopLevelEventHandler;
unsigned m_eventNestingLevel;
« no previous file with comments | « no previous file | Source/modules/serviceworkers/ServiceWorkerGlobalScope.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698