| Index: third_party/WebKit/Source/modules/filesystem/LocalFileSystem.h
|
| diff --git a/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.h b/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.h
|
| index e4ac00e426c981e08dcfe6449acff350dd4a95f0..b24c5febfdfa359754fa04df7d524592a983c5a6 100644
|
| --- a/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.h
|
| +++ b/third_party/WebKit/Source/modules/filesystem/LocalFileSystem.h
|
| @@ -47,7 +47,7 @@ class KURL;
|
| class LocalFrame;
|
| class WebFileSystem;
|
|
|
| -class LocalFileSystem final : public GarbageCollectedFinalized<LocalFileSystem>, public HeapSupplement<LocalFrame>, public HeapSupplement<WorkerClients> {
|
| +class LocalFileSystem final : public GarbageCollectedFinalized<LocalFileSystem>, public Supplement<LocalFrame>, public Supplement<WorkerClients> {
|
| USING_GARBAGE_COLLECTED_MIXIN(LocalFileSystem);
|
| WTF_MAKE_NONCOPYABLE(LocalFileSystem);
|
| public:
|
| @@ -65,8 +65,8 @@ public:
|
|
|
| DEFINE_INLINE_VIRTUAL_TRACE()
|
| {
|
| - HeapSupplement<LocalFrame>::trace(visitor);
|
| - HeapSupplement<WorkerClients>::trace(visitor);
|
| + Supplement<LocalFrame>::trace(visitor);
|
| + Supplement<WorkerClients>::trace(visitor);
|
| }
|
|
|
| protected:
|
|
|