Index: Source/bindings/core/v8/ScriptPromisePropertyTest.cpp |
diff --git a/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp b/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp |
index 759389008aa5d977db350bb454ed92dc05c44e8b..297c232bc6e835aa7300ab7f0598580c2c8b1777 100644 |
--- a/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp |
+++ b/Source/bindings/core/v8/ScriptPromisePropertyTest.cpp |
@@ -81,7 +81,7 @@ private: |
class GarbageCollectedHolder : public GarbageCollectedScriptWrappable { |
public: |
- typedef ScriptPromiseProperty<Member<GarbageCollectedScriptWrappable>, Member<GarbageCollectedScriptWrappable>, Member<GarbageCollectedScriptWrappable> > Property; |
+ typedef ScriptPromiseProperty<Member<GarbageCollectedScriptWrappable>, Member<GarbageCollectedScriptWrappable>, Member<GarbageCollectedScriptWrappable>> Property; |
GarbageCollectedHolder(ExecutionContext* executionContext) |
: GarbageCollectedScriptWrappable("holder") |
, m_property(new Property(executionContext, toGarbageCollectedScriptWrappable(), Property::Ready)) { } |
@@ -103,7 +103,7 @@ class RefCountedHolder : public RefCountedScriptWrappable { |
public: |
// Do not resolve or reject the property with the holder itself. It leads |
// to a leak. |
- typedef ScriptPromiseProperty<RefCountedScriptWrappable*, RefPtr<RefCountedScriptWrappable>, RefPtr<RefCountedScriptWrappable> > Property; |
+ typedef ScriptPromiseProperty<RefCountedScriptWrappable*, RefPtr<RefCountedScriptWrappable>, RefPtr<RefCountedScriptWrappable>> Property; |
static PassRefPtr<RefCountedHolder> create(ExecutionContext* executionContext) |
{ |
return adoptRef(new RefCountedHolder(executionContext)); |