Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1365)

Unified Diff: third_party/WebKit/Source/core/css/FontFace.cpp

Issue 2578193004: Remove ActiveScriptWrappableBase::m_scriptWrappable (Closed)
Patch Set: temp Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..154827984c93ccd7add8e6e6c651403a9550bb9c 100644
--- a/third_party/WebKit/Source/core/css/FontFace.cpp
+++ b/third_party/WebKit/Source/core/css/FontFace.cpp
@@ -154,19 +154,14 @@ FontFace* FontFace::create(Document* document,
}
FontFace::FontFace(ExecutionContext* context)
- : ActiveScriptWrappable<FontFace>(this),
- SuspendableObject(context),
- m_status(Unloaded) {
+ : SuspendableObject(context), m_status(Unloaded) {
suspendIfNeeded();
}
FontFace::FontFace(ExecutionContext* context,
const AtomicString& family,
const FontFaceDescriptors& descriptors)
- : ActiveScriptWrappable(this),
- SuspendableObject(context),
- m_family(family),
- m_status(Unloaded) {
+ : SuspendableObject(context), m_family(family), m_status(Unloaded) {
Document* document = toDocument(context);
setPropertyFromString(document, descriptors.style(), CSSPropertyFontStyle);
setPropertyFromString(document, descriptors.weight(), CSSPropertyFontWeight);
« no previous file with comments | « third_party/WebKit/Source/core/animation/Animation.cpp ('k') | third_party/WebKit/Source/core/css/MediaQueryList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698