| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "base/task_scheduler/task_tracker_posix.h" | 5 #include "base/task_scheduler/task_tracker_posix.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/files/file_descriptor_watcher_posix.h" | 9 #include "base/files/file_descriptor_watcher_posix.h" |
| 10 #include "base/logging.h" | |
| 11 | 10 |
| 12 namespace base { | 11 namespace base { |
| 13 namespace internal { | 12 namespace internal { |
| 14 | 13 |
| 15 TaskTrackerPosix::TaskTrackerPosix() = default; | 14 TaskTrackerPosix::TaskTrackerPosix() = default; |
| 16 TaskTrackerPosix::~TaskTrackerPosix() = default; | 15 TaskTrackerPosix::~TaskTrackerPosix() = default; |
| 17 | 16 |
| 18 void TaskTrackerPosix::PerformRunTask(std::unique_ptr<Task> task) { | 17 void TaskTrackerPosix::PerformRunTask(std::unique_ptr<Task> task) { |
| 19 DCHECK(watch_file_descriptor_message_loop_); | 18 DCHECK(watch_file_descriptor_message_loop_); |
| 20 FileDescriptorWatcher file_descriptor_watcher( | 19 FileDescriptorWatcher file_descriptor_watcher( |
| 21 watch_file_descriptor_message_loop_); | 20 watch_file_descriptor_message_loop_); |
| 22 TaskTracker::PerformRunTask(std::move(task)); | 21 TaskTracker::PerformRunTask(std::move(task)); |
| 23 } | 22 } |
| 24 | 23 |
| 24 #if DCHECK_IS_ON() |
| 25 bool TaskTrackerPosix::IsExemptFromBlockingShutdownChecks() { |
| 26 return service_thread_handle_.is_equal(PlatformThread::CurrentHandle()); |
| 27 } |
| 28 #endif |
| 29 |
| 25 } // namespace internal | 30 } // namespace internal |
| 26 } // namespace base | 31 } // namespace base |
| OLD | NEW |