Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: base/task_scheduler/task_tracker_posix.cc

Issue 2816653003: Do not take a MessageLoopForIO in the constructor of TaskTrackerPosix. (Closed)
Patch Set: rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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" 10 #include "base/logging.h"
11 11
12 namespace base { 12 namespace base {
13 namespace internal { 13 namespace internal {
14 14
15 TaskTrackerPosix::TaskTrackerPosix( 15 TaskTrackerPosix::TaskTrackerPosix() = default;
16 MessageLoopForIO* watch_file_descriptor_message_loop)
17 : watch_file_descriptor_message_loop_(watch_file_descriptor_message_loop) {
18 DCHECK(watch_file_descriptor_message_loop_);
19 }
20
21 TaskTrackerPosix::~TaskTrackerPosix() = default; 16 TaskTrackerPosix::~TaskTrackerPosix() = default;
22 17
23 void TaskTrackerPosix::PerformRunTask(std::unique_ptr<Task> task) { 18 void TaskTrackerPosix::PerformRunTask(std::unique_ptr<Task> task) {
19 DCHECK(watch_file_descriptor_message_loop_);
24 FileDescriptorWatcher file_descriptor_watcher( 20 FileDescriptorWatcher file_descriptor_watcher(
25 watch_file_descriptor_message_loop_); 21 watch_file_descriptor_message_loop_);
26 TaskTracker::PerformRunTask(std::move(task)); 22 TaskTracker::PerformRunTask(std::move(task));
27 } 23 }
28 24
29 } // namespace internal 25 } // namespace internal
30 } // namespace base 26 } // namespace base
OLDNEW
« no previous file with comments | « base/task_scheduler/task_tracker_posix.h ('k') | base/task_scheduler/task_tracker_posix_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698