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

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

Issue 469923002: Add missing calls to ScriptWrappable::init in FontFace, LocalCredential and FederatedCredential. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: + LocalCredential Created 6 years, 4 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 | « no previous file | Source/modules/credentialmanager/FederatedCredential.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 08926dc4d96cd32eff873d3353878abaee97ca05..a6250bab725d18e724d209986bf554966694d37b 100644
--- a/Source/core/css/FontFace.cpp
+++ b/Source/core/css/FontFace.cpp
@@ -135,6 +135,8 @@ FontFace::FontFace(ExecutionContext* context, const AtomicString& family, const
: 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 | « no previous file | Source/modules/credentialmanager/FederatedCredential.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698