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

Unified Diff: third_party/WebKit/Source/modules/notifications/NotificationImageLoader.h

Issue 2228433002: Revert of Move ThreadableLoader to Oilpan heap (2/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@onheap-bridge-peer-in-worker-threadable-loader
Patch Set: Created 4 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
Index: third_party/WebKit/Source/modules/notifications/NotificationImageLoader.h
diff --git a/third_party/WebKit/Source/modules/notifications/NotificationImageLoader.h b/third_party/WebKit/Source/modules/notifications/NotificationImageLoader.h
index 59f488049c1e5daf03d0ea2293efad78394acbbb..363b4fb855e5fbf28409a786d5137dded208b362 100644
--- a/third_party/WebKit/Source/modules/notifications/NotificationImageLoader.h
+++ b/third_party/WebKit/Source/modules/notifications/NotificationImageLoader.h
@@ -46,10 +46,7 @@
void didFail(const ResourceError&) override;
void didFailRedirectCheck() override;
- DEFINE_INLINE_TRACE()
- {
- visitor->trace(m_threadableLoader);
- }
+ DEFINE_INLINE_TRACE() {}
private:
void runCallbackWithEmptyBitmap();
@@ -58,7 +55,7 @@
double m_startTime;
RefPtr<SharedBuffer> m_data;
std::unique_ptr<ImageCallback> m_imageCallback;
- Member<ThreadableLoader> m_threadableLoader;
+ std::unique_ptr<ThreadableLoader> m_threadableLoader;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698