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 6ab2da19217be824bfb6e420bf6e30ca617ac4bd..6b3b2329153697598afc52c534ebed09f20c6946 100644 |
--- a/third_party/WebKit/Source/core/css/FontFace.cpp |
+++ b/third_party/WebKit/Source/core/css/FontFace.cpp |
@@ -154,16 +154,14 @@ FontFace* FontFace::create(Document* document, |
} |
FontFace::FontFace(ExecutionContext* context) |
- : ActiveScriptWrappable<FontFace>(this), |
- SuspendableObject(context), |
- m_status(Unloaded) { |
+ : ActiveScriptWrappable(), SuspendableObject(context), m_status(Unloaded) { |
suspendIfNeeded(); |
} |
FontFace::FontFace(ExecutionContext* context, |
const AtomicString& family, |
const FontFaceDescriptors& descriptors) |
- : ActiveScriptWrappable(this), |
+ : ActiveScriptWrappable(), |
SuspendableObject(context), |
m_family(family), |
m_status(Unloaded) { |