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

Side by Side Diff: components/scheduler/base/work_queue.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, 11 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_WORK_QUEUE_H_ 5 #ifndef CONTENT_RENDERER_SCHEDULER_BASE_WORK_QUEUE_H_
6 #define CONTENT_RENDERER_SCHEDULER_BASE_WORK_QUEUE_H_ 6 #define CONTENT_RENDERER_SCHEDULER_BASE_WORK_QUEUE_H_
7 7
8 #include <stddef.h>
9
8 #include <set> 10 #include <set>
9 11
10 #include "base/trace_event/trace_event.h" 12 #include "base/trace_event/trace_event.h"
11 #include "base/trace_event/trace_event_argument.h" 13 #include "base/trace_event/trace_event_argument.h"
12 #include "components/scheduler/base/enqueue_order.h" 14 #include "components/scheduler/base/enqueue_order.h"
13 #include "components/scheduler/base/task_queue_impl.h" 15 #include "components/scheduler/base/task_queue_impl.h"
14 #include "components/scheduler/scheduler_export.h" 16 #include "components/scheduler/scheduler_export.h"
15 17
16 namespace scheduler { 18 namespace scheduler {
17 namespace internal { 19 namespace internal {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 WorkQueueSets* work_queue_sets_; // NOT OWNED. 77 WorkQueueSets* work_queue_sets_; // NOT OWNED.
76 TaskQueueImpl* task_queue_; // NOT OWNED. 78 TaskQueueImpl* task_queue_; // NOT OWNED.
77 size_t work_queue_set_index_; 79 size_t work_queue_set_index_;
78 const char* name_; 80 const char* name_;
79 }; 81 };
80 82
81 } // namespace internal 83 } // namespace internal
82 } // namespace scheduler 84 } // namespace scheduler
83 85
84 #endif // CONTENT_RENDERER_SCHEDULER_BASE_WORK_QUEUE_H_ 86 #endif // CONTENT_RENDERER_SCHEDULER_BASE_WORK_QUEUE_H_
OLDNEW
« no previous file with comments | « components/scheduler/base/time_domain_unittest.cc ('k') | components/scheduler/base/work_queue_sets.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698