Chromium Code Reviews| Index: Source/core/dom/CrossThreadTask.h |
| diff --git a/Source/core/dom/CrossThreadTask.h b/Source/core/dom/CrossThreadTask.h |
| index 9902ebdcefdd38cedab485bf77ecd2c9608df52d..71622b493ef2b2fe23c5d1b6311e7bb79ea0800f 100644 |
| --- a/Source/core/dom/CrossThreadTask.h |
| +++ b/Source/core/dom/CrossThreadTask.h |
| @@ -57,6 +57,10 @@ template<typename T> struct CrossThreadTaskTraits<PassOwnPtr<T> > { |
| typedef PassOwnPtr<T> ParamType; |
| }; |
| +template<typename T> struct CrossThreadTaskTraits<CrossThreadPersistent<T> > { |
| + typedef CrossThreadPersistent<T> ParamType; |
|
haraken
2014/05/27 09:21:37
This was the cause of the empty ASSERT error.
Thi
|
| +}; |
| + |
| template<typename P1, typename MP1> |
| class CrossThreadTask1 : public ExecutionContextTask { |
| public: |