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

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

Issue 1374653003: scheduler: Add a base directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed gn clobber build. Created 5 years, 2 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
« no previous file with comments | « components/scheduler/base/task_queue.cc ('k') | components/scheduler/base/task_queue_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_TASK_QUEUE_IMPL_H_ 5 #ifndef CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_
6 #define CONTENT_RENDERER_SCHEDULER_TASK_QUEUE_IMPL_H_ 6 #define CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/pending_task.h" 10 #include "base/pending_task.h"
11 #include "base/threading/thread_checker.h" 11 #include "base/threading/thread_checker.h"
12 #include "base/trace_event/trace_event.h" 12 #include "base/trace_event/trace_event.h"
13 #include "base/trace_event/trace_event_argument.h" 13 #include "base/trace_event/trace_event_argument.h"
14 #include "components/scheduler/child/lazy_now.h" 14 #include "components/scheduler/base/lazy_now.h"
15 #include "components/scheduler/child/task_queue.h" 15 #include "components/scheduler/base/task_queue.h"
16 #include "components/scheduler/scheduler_export.h" 16 #include "components/scheduler/scheduler_export.h"
17 17
18 namespace scheduler { 18 namespace scheduler {
19 class TaskQueueManager; 19 class TaskQueueManager;
20 20
21 namespace internal { 21 namespace internal {
22 22
23 class SCHEDULER_EXPORT TaskQueueImpl final : public TaskQueue { 23 class SCHEDULER_EXPORT TaskQueueImpl final : public TaskQueue {
24 public: 24 public:
25 TaskQueueImpl(TaskQueueManager* task_queue_manager, 25 TaskQueueImpl(TaskQueueManager* task_queue_manager,
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 size_t set_index_; 202 size_t set_index_;
203 bool should_monitor_quiescence_; 203 bool should_monitor_quiescence_;
204 bool should_notify_observers_; 204 bool should_notify_observers_;
205 205
206 DISALLOW_COPY_AND_ASSIGN(TaskQueueImpl); 206 DISALLOW_COPY_AND_ASSIGN(TaskQueueImpl);
207 }; 207 };
208 208
209 } // namespace internal 209 } // namespace internal
210 } // namespace scheduler 210 } // namespace scheduler
211 211
212 #endif // CONTENT_RENDERER_SCHEDULER_TASK_QUEUE_IMPL_H_ 212 #endif // CONTENT_RENDERER_SCHEDULER_BASE_TASK_QUEUE_IMPL_H_
OLDNEW
« no previous file with comments | « components/scheduler/base/task_queue.cc ('k') | components/scheduler/base/task_queue_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698