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

Side by Side Diff: components/scheduler/base/task_queue_impl.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 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 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 CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ 5 #ifndef CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_
6 #define CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ 6 #define CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <set> 10 #include <set>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "base/memory/scoped_ptr.h"
13 #include "base/pending_task.h" 14 #include "base/pending_task.h"
14 #include "base/threading/thread_checker.h" 15 #include "base/threading/thread_checker.h"
15 #include "base/trace_event/trace_event.h" 16 #include "base/trace_event/trace_event.h"
16 #include "base/trace_event/trace_event_argument.h" 17 #include "base/trace_event/trace_event_argument.h"
17 #include "components/scheduler/base/enqueue_order.h" 18 #include "components/scheduler/base/enqueue_order.h"
18 #include "components/scheduler/base/task_queue.h" 19 #include "components/scheduler/base/task_queue.h"
19 #include "components/scheduler/scheduler_export.h" 20 #include "components/scheduler/scheduler_export.h"
20 21
21 namespace scheduler { 22 namespace scheduler {
22 class LazyNow; 23 class LazyNow;
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 const bool should_notify_observers_; 300 const bool should_notify_observers_;
300 const bool should_report_when_execution_blocked_; 301 const bool should_report_when_execution_blocked_;
301 302
302 DISALLOW_COPY_AND_ASSIGN(TaskQueueImpl); 303 DISALLOW_COPY_AND_ASSIGN(TaskQueueImpl);
303 }; 304 };
304 305
305 } // namespace internal 306 } // namespace internal
306 } // namespace scheduler 307 } // namespace scheduler
307 308
308 #endif // CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ 309 #endif // CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_
OLDNEW
« no previous file with comments | « components/proximity_auth/cryptauth/sync_scheduler.h ('k') | components/scheduler/base/task_queue_manager_delegate_for_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698