Index: third_party/WebKit/Source/platform/scheduler/CancellableTaskFactoryTest.cpp |
diff --git a/third_party/WebKit/Source/platform/scheduler/CancellableTaskFactoryTest.cpp b/third_party/WebKit/Source/platform/scheduler/CancellableTaskFactoryTest.cpp |
index 694d61e49618dd1e9cb06126eebfee48aa088198..905ae12655c3851f25df9111ed9d9cc62726209d 100644 |
--- a/third_party/WebKit/Source/platform/scheduler/CancellableTaskFactoryTest.cpp |
+++ b/third_party/WebKit/Source/platform/scheduler/CancellableTaskFactoryTest.cpp |
@@ -13,7 +13,7 @@ namespace { |
class TestCancellableTaskFactory final : public CancellableTaskFactory { |
public: |
explicit TestCancellableTaskFactory(PassOwnPtr<SameThreadClosure> closure) |
- : CancellableTaskFactory(closure) |
+ : CancellableTaskFactory(std::move(closure)) |
{ |
} |
}; |