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

Unified Diff: Source/modules/quota/StorageQuotaCallbacksImpl.h

Issue 1233173002: Have ScriptPromiseResolver on the Oilpan heap always. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix webusb ScriptPromiseResolver usage Created 5 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/quota/StorageQuota.cpp ('k') | Source/modules/quota/StorageQuotaCallbacksImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/quota/StorageQuotaCallbacksImpl.h
diff --git a/Source/modules/quota/StorageQuotaCallbacksImpl.h b/Source/modules/quota/StorageQuotaCallbacksImpl.h
index 5c7a23754b5c5505fcf2699c8dd5f562323f8999..14300b33e0576462d2062bf8edd4264becbb68fd 100644
--- a/Source/modules/quota/StorageQuotaCallbacksImpl.h
+++ b/Source/modules/quota/StorageQuotaCallbacksImpl.h
@@ -43,7 +43,7 @@ namespace blink {
class MODULES_EXPORT StorageQuotaCallbacksImpl final : public StorageQuotaCallbacks {
WTF_MAKE_NONCOPYABLE(StorageQuotaCallbacksImpl);
public:
- static StorageQuotaCallbacksImpl* create(PassRefPtrWillBeRawPtr<ScriptPromiseResolver> resolver)
+ static StorageQuotaCallbacksImpl* create(ScriptPromiseResolver* resolver)
{
return new StorageQuotaCallbacksImpl(resolver);
}
@@ -57,9 +57,9 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- explicit StorageQuotaCallbacksImpl(PassRefPtrWillBeRawPtr<ScriptPromiseResolver>);
+ explicit StorageQuotaCallbacksImpl(ScriptPromiseResolver*);
- RefPtrWillBeMember<ScriptPromiseResolver> m_resolver;
+ Member<ScriptPromiseResolver> m_resolver;
};
} // namespace blink
« no previous file with comments | « Source/modules/quota/StorageQuota.cpp ('k') | Source/modules/quota/StorageQuotaCallbacksImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698