| Index: third_party/WebKit/Source/core/css/FontFaceSet.h
|
| diff --git a/third_party/WebKit/Source/core/css/FontFaceSet.h b/third_party/WebKit/Source/core/css/FontFaceSet.h
|
| index 713dabff4d5ebd7d6124cf7d48f91b7dc4850c00..78a27b4a005f3bfde08b145b18152bae3cbe77ca 100644
|
| --- a/third_party/WebKit/Source/core/css/FontFaceSet.h
|
| +++ b/third_party/WebKit/Source/core/css/FontFaceSet.h
|
| @@ -29,8 +29,8 @@
|
| #include "bindings/core/v8/Iterable.h"
|
| #include "bindings/core/v8/ScriptPromise.h"
|
| #include "core/css/FontFace.h"
|
| -#include "core/dom/ActiveDOMObject.h"
|
| #include "core/dom/Document.h"
|
| +#include "core/dom/SuspendableObject.h"
|
| #include "core/events/EventListener.h"
|
| #include "core/events/EventTarget.h"
|
| #include "platform/AsyncMethodRunner.h"
|
| @@ -56,7 +56,7 @@ using FontFaceSetIterable = PairIterable<Member<FontFace>, Member<FontFace>>;
|
|
|
| class FontFaceSet final : public EventTargetWithInlineData,
|
| public Supplement<Document>,
|
| - public ActiveDOMObject,
|
| + public SuspendableObject,
|
| public FontFaceSetIterable,
|
| public FontFace::LoadFontCallback {
|
| USING_GARBAGE_COLLECTED_MIXIN(FontFaceSet);
|
| @@ -96,7 +96,7 @@ class FontFaceSet final : public EventTargetWithInlineData,
|
|
|
| size_t approximateBlankCharacterCount() const;
|
|
|
| - // ActiveDOMObject
|
| + // SuspendableObject
|
| void suspend() override;
|
| void resume() override;
|
| void contextDestroyed() override;
|
|
|