Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / AsyncMethodRunner.h
index 3d16b64..6b00671 100644 (file)
@@ -122,6 +122,10 @@ private:
 
     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
+    // (That's the case in the current code base).
+    GC_PLUGIN_IGNORE("363031")
     TargetClass* m_object;
     TargetMethod m_method;