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

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

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. Created 6 years, 3 months 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
« no previous file with comments | « Source/core/css/DOMWindowCSS.h ('k') | Source/core/css/FontFaceSet.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/FontFace.cpp
diff --git a/Source/core/css/FontFace.cpp b/Source/core/css/FontFace.cpp
index 6d8dec5b283684a440ea779e1a254b3bc1a59571..c14801203761f92e65f8aebc9870a546b89862ca 100644
--- a/Source/core/css/FontFace.cpp
+++ b/Source/core/css/FontFace.cpp
@@ -128,15 +128,12 @@ PassRefPtrWillBeRawPtr<FontFace> FontFace::create(Document* document, const Styl
FontFace::FontFace()
: m_status(Unloaded)
{
- ScriptWrappable::init(this);
}
FontFace::FontFace(ExecutionContext* context, const AtomicString& family, const Dictionary& descriptors)
: m_family(family)
, m_status(Unloaded)
{
- ScriptWrappable::init(this);
-
Document* document = toDocument(context);
String value;
if (DictionaryHelper::get(descriptors, "style", value))
« no previous file with comments | « Source/core/css/DOMWindowCSS.h ('k') | Source/core/css/FontFaceSet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698