| Index: Source/core/svg/SVGTests.h
|
| diff --git a/Source/core/svg/SVGTests.h b/Source/core/svg/SVGTests.h
|
| index b248f42960076956c33dae23edab177c659ab831..8d286fdc49d7f5a436b609532fc28bb134549b9a 100644
|
| --- a/Source/core/svg/SVGTests.h
|
| +++ b/Source/core/svg/SVGTests.h
|
| @@ -49,20 +49,7 @@ public:
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| protected:
|
| - SVGTests();
|
| -
|
| - // FIXME: Oilpan: the construction of this mixin requires heap allocation,
|
| - // which cannot be safely done with Oilpan until the object that include
|
| - // this mixin have had its vptr initialized -- so as to be able to
|
| - // accurately trace the entire object should a GC strike while constructing
|
| - // the mixin.
|
| - //
|
| - // Try to come up with a more natural alternative and solution that doesn't
|
| - // require hoisting the constructor code for mixins into a separate method
|
| - // like initialize(). It makes construction of these heap-allocation mixins
|
| - // safe in the meantime, however.
|
| - //
|
| - void initialize(SVGElement*);
|
| + explicit SVGTests(SVGElement* contextElement);
|
|
|
| private:
|
| RefPtrWillBeMember<SVGStaticStringList> m_requiredFeatures;
|
|
|