Index: Source/platform/AsyncMethodRunner.h |
diff --git a/Source/platform/AsyncMethodRunner.h b/Source/platform/AsyncMethodRunner.h |
index c60aa535912611b8dcaa59eeef53f3d15f999ea8..9eb40890807e34ea4b072864ba35146dc60c2045 100644 |
--- a/Source/platform/AsyncMethodRunner.h |
+++ b/Source/platform/AsyncMethodRunner.h |
@@ -120,9 +120,9 @@ public: |
} |
private: |
- void fired(Timer<AsyncMethodRunner<TargetClass> >*) { (m_object->*m_method)(); } |
+ void fired(Timer<AsyncMethodRunner<TargetClass>>*) { (m_object->*m_method)(); } |
- Timer<AsyncMethodRunner<TargetClass> > m_timer; |
+ Timer<AsyncMethodRunner<TargetClass>> m_timer; |
// FIXME: oilpan: AsyncMethodRunner should be moved to the heap and m_object should be traced. |
// This raw pointer is safe as long as AsyncMethodRunner<X> is held by the X itself |