| Index: third_party/WebKit/Source/core/css/FontFace.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/FontFace.cpp b/third_party/WebKit/Source/core/css/FontFace.cpp
|
| index e6184dbda79f7fb56bdbce930693f36c65190f60..023975e2f8c017023ba7c5133c1e6793f044ad9f 100644
|
| --- a/third_party/WebKit/Source/core/css/FontFace.cpp
|
| +++ b/third_party/WebKit/Source/core/css/FontFace.cpp
|
| @@ -138,14 +138,16 @@ PassRefPtrWillBeRawPtr<FontFace> FontFace::create(Document* document, const Styl
|
| }
|
|
|
| FontFace::FontFace(ExecutionContext* context)
|
| - : ActiveDOMObject(context)
|
| + : ActiveScriptWrappable(this)
|
| + , ActiveDOMObject(context)
|
| , m_status(Unloaded)
|
| {
|
| suspendIfNeeded();
|
| }
|
|
|
| FontFace::FontFace(ExecutionContext* context, const AtomicString& family, const FontFaceDescriptors& descriptors)
|
| - : ActiveDOMObject(context)
|
| + : ActiveScriptWrappable(this)
|
| + , ActiveDOMObject(context)
|
| , m_family(family)
|
| , m_status(Unloaded)
|
| {
|
|
|