| Index: third_party/WebKit/Source/platform/threading/BackgroundTaskRunner.cpp
|
| diff --git a/third_party/WebKit/Source/platform/threading/BackgroundTaskRunner.cpp b/third_party/WebKit/Source/platform/threading/BackgroundTaskRunner.cpp
|
| index 7805e23c8e9c2f7d964d041c5be71a8f4f134cff..ae5b309f0985a5efde51455af3abc95f11c7e438 100644
|
| --- a/third_party/WebKit/Source/platform/threading/BackgroundTaskRunner.cpp
|
| +++ b/third_party/WebKit/Source/platform/threading/BackgroundTaskRunner.cpp
|
| @@ -12,7 +12,8 @@
|
|
|
| void BackgroundTaskRunner::postOnBackgroundThread(const WebTraceLocation& location, std::unique_ptr<CrossThreadClosure> closure, TaskSize taskSize)
|
| {
|
| - base::WorkerPool::PostTask(location, convertToBaseCallback(std::move(closure)), taskSize == TaskSizeLongRunningTask);
|
| + tracked_objects::Location baseLocation(location.functionName(), location.fileName(), 0, nullptr);
|
| + base::WorkerPool::PostTask(baseLocation, convertToBaseCallback(std::move(closure)), taskSize == TaskSizeLongRunningTask);
|
| }
|
|
|
| } // namespace blink
|
|
|