Searched refs:CCThreadTaskImpl (Results 1 – 1 of 1) sorted by relevance
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/ |
D | CCThreadTask.h | 39 typedef CCThreadTask0<T> CCThreadTaskImpl; typedef 41 static PassOwnPtr<CCThreadTaskImpl> create(T* instance, Method method) in create() 43 return adoptPtr(new CCThreadTaskImpl(instance, method)); in create() 66 typedef CCThreadTask1<T, P1, MP1> CCThreadTaskImpl; typedef 69 static PassOwnPtr<CCThreadTaskImpl> create(T* instance, Method method, Param1 parameter1) in create() 71 return adoptPtr(new CCThreadTaskImpl(instance, method, parameter1)); in create() 96 typedef CCThreadTask2<T, P1, MP1, P2, MP2> CCThreadTaskImpl; typedef 100 …static PassOwnPtr<CCThreadTaskImpl> create(T* instance, Method method, Param1 parameter1, Param2 p… in create() 102 return adoptPtr(new CCThreadTaskImpl(instance, method, parameter1, parameter2)); in create() 129 typedef CCThreadTask3<T, P1, MP1, P2, MP2, P3, MP3> CCThreadTaskImpl; typedef [all …]
|