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

Side by Side Diff: third_party/WebKit/Source/platform/scheduler/child/scheduler_tqm_delegate.h

Issue 2884763002: Automated IWYU fix for TaskRunner includes. (Closed)
Patch Set: rebase on r472096 Created 3 years, 7 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 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 #ifndef THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_CHILD_SCHEDULER_TQM_DELEGAT E_H_ 5 #ifndef THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_CHILD_SCHEDULER_TQM_DELEGAT E_H_
6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_CHILD_SCHEDULER_TQM_DELEGAT E_H_ 6 #define THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_CHILD_SCHEDULER_TQM_DELEGAT E_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 #include "base/single_thread_task_runner.h"
10 #include "platform/scheduler/base/task_queue_manager_delegate.h" 11 #include "platform/scheduler/base/task_queue_manager_delegate.h"
11 12
12 namespace blink { 13 namespace blink {
13 namespace scheduler { 14 namespace scheduler {
14 15
15 class PLATFORM_EXPORT SchedulerTqmDelegate : public TaskQueueManagerDelegate { 16 class PLATFORM_EXPORT SchedulerTqmDelegate : public TaskQueueManagerDelegate {
16 public: 17 public:
17 SchedulerTqmDelegate() {} 18 SchedulerTqmDelegate() {}
18 19
19 // If the underlying task runner supports the concept of a default task 20 // If the underlying task runner supports the concept of a default task
20 // runner, the delegate should implement this function to redirect that task 21 // runner, the delegate should implement this function to redirect that task
21 // runner to the scheduler. 22 // runner to the scheduler.
22 virtual void SetDefaultTaskRunner( 23 virtual void SetDefaultTaskRunner(
23 scoped_refptr<base::SingleThreadTaskRunner> task_runner) = 0; 24 scoped_refptr<base::SingleThreadTaskRunner> task_runner) = 0;
24 25
25 // Similarly this method can be used to restore the original task runner when 26 // Similarly this method can be used to restore the original task runner when
26 // the scheduler no longer wants to intercept tasks. 27 // the scheduler no longer wants to intercept tasks.
27 virtual void RestoreDefaultTaskRunner() = 0; 28 virtual void RestoreDefaultTaskRunner() = 0;
28 29
29 protected: 30 protected:
30 ~SchedulerTqmDelegate() override {} 31 ~SchedulerTqmDelegate() override {}
31 32
32 DISALLOW_COPY_AND_ASSIGN(SchedulerTqmDelegate); 33 DISALLOW_COPY_AND_ASSIGN(SchedulerTqmDelegate);
33 }; 34 };
34 35
35 } // namespace scheduler 36 } // namespace scheduler
36 } // namespace blink 37 } // namespace blink
37 38
38 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_CHILD_SCHEDULER_TQM_DELE GATE_H_ 39 #endif // THIRD_PARTY_WEBKIT_SOURCE_PLATFORM_SCHEDULER_CHILD_SCHEDULER_TQM_DELE GATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698