| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "platform/threading/BackgroundTaskRunner.h" | 5 #include "platform/threading/BackgroundTaskRunner.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
| 9 #include "base/location.h" | 9 #include "base/location.h" |
| 10 #include "base/threading/worker_pool.h" | 10 #include "base/threading/worker_pool.h" |
| 11 #include "public/platform/WebTraceLocation.h" | 11 #include "public/platform/WebTraceLocation.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 static void RunBackgroundTask(CrossThreadClosure* closure) | 15 static void RunBackgroundTask(CrossThreadClosure* closure) |
| 16 { | 16 { |
| 17 (*closure)(); | 17 (*closure)(); |
| 18 } | 18 } |
| 19 | 19 |
| 20 void BackgroundTaskRunner::postOnBackgroundThread(const WebTraceLocation& locati
on, std::unique_ptr<CrossThreadClosure> closure, TaskSize taskSize) | 20 void BackgroundTaskRunner::postOnBackgroundThread(const WebTraceLocation& locati
on, std::unique_ptr<CrossThreadClosure> closure, TaskSize taskSize) |
| 21 { | 21 { |
| 22 tracked_objects::Location baseLocation(location.functionName(), location.fil
eName(), 0, nullptr); | 22 tracked_objects::Location baseLocation(location.functionName(), location.fil
eName(), location.lineNumber(), location.programCounter()); |
| 23 base::WorkerPool::PostTask(baseLocation, base::Bind(&RunBackgroundTask, base
::Owned(closure.release())), taskSize == TaskSizeLongRunningTask); | 23 base::WorkerPool::PostTask(baseLocation, base::Bind(&RunBackgroundTask, base
::Owned(closure.release())), taskSize == TaskSizeLongRunningTask); |
| 24 } | 24 } |
| 25 | 25 |
| 26 } // namespace blink | 26 } // namespace blink |
| OLD | NEW |