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

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

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 4 years, 12 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>
9
8 #include <set> 10 #include <set>
9 11
12 #include "base/macros.h"
10 #include "base/pending_task.h" 13 #include "base/pending_task.h"
11 #include "base/threading/thread_checker.h" 14 #include "base/threading/thread_checker.h"
12 #include "base/trace_event/trace_event.h" 15 #include "base/trace_event/trace_event.h"
13 #include "base/trace_event/trace_event_argument.h" 16 #include "base/trace_event/trace_event_argument.h"
14 #include "components/scheduler/base/enqueue_order.h" 17 #include "components/scheduler/base/enqueue_order.h"
15 #include "components/scheduler/base/task_queue.h" 18 #include "components/scheduler/base/task_queue.h"
16 #include "components/scheduler/scheduler_export.h" 19 #include "components/scheduler/scheduler_export.h"
17 20
18 namespace scheduler { 21 namespace scheduler {
19 class LazyNow; 22 class LazyNow;
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 const bool should_monitor_quiescence_; 262 const bool should_monitor_quiescence_;
260 const bool should_notify_observers_; 263 const bool should_notify_observers_;
261 264
262 DISALLOW_COPY_AND_ASSIGN(TaskQueueImpl); 265 DISALLOW_COPY_AND_ASSIGN(TaskQueueImpl);
263 }; 266 };
264 267
265 } // namespace internal 268 } // namespace internal
266 } // namespace scheduler 269 } // namespace scheduler
267 270
268 #endif // CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_ 271 #endif // CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_
OLDNEW
« no previous file with comments | « components/scheduler/base/task_queue.h ('k') | components/scheduler/base/task_queue_manager_perftest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698