| 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 363b4fb855e5fbf28409a786d5137dded208b362..59f488049c1e5daf03d0ea2293efad78394acbbb 100644
|
| --- a/third_party/WebKit/Source/modules/notifications/NotificationImageLoader.h
|
| +++ b/third_party/WebKit/Source/modules/notifications/NotificationImageLoader.h
|
| @@ -46,7 +46,10 @@ public:
|
| void didFail(const ResourceError&) override;
|
| void didFailRedirectCheck() override;
|
|
|
| - DEFINE_INLINE_TRACE() {}
|
| + DEFINE_INLINE_TRACE()
|
| + {
|
| + visitor->trace(m_threadableLoader);
|
| + }
|
|
|
| private:
|
| void runCallbackWithEmptyBitmap();
|
| @@ -55,7 +58,7 @@ private:
|
| double m_startTime;
|
| RefPtr<SharedBuffer> m_data;
|
| std::unique_ptr<ImageCallback> m_imageCallback;
|
| - std::unique_ptr<ThreadableLoader> m_threadableLoader;
|
| + Member<ThreadableLoader> m_threadableLoader;
|
| };
|
|
|
| } // namespace blink
|
|
|