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

Unified Diff: third_party/WebKit/Source/platform/scheduler/base/work_queue.h

Issue 2860813004: Change TaskQueueImpl to use a Deque with an inline capacity of 8 (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/scheduler/base/work_queue.h
diff --git a/third_party/WebKit/Source/platform/scheduler/base/work_queue.h b/third_party/WebKit/Source/platform/scheduler/base/work_queue.h
index ceab576093226e5d47fb195e29066761a814350b..742c13202e481cfcb3b35c76f35af19fd56e0614 100644
--- a/third_party/WebKit/Source/platform/scheduler/base/work_queue.h
+++ b/third_party/WebKit/Source/platform/scheduler/base/work_queue.h
@@ -116,7 +116,7 @@ class PLATFORM_EXPORT WorkQueue {
bool BlockedByFence() const;
private:
- WTF::Deque<TaskQueueImpl::Task> work_queue_;
+ TaskQueueImpl::TaskDeque work_queue_;
WorkQueueSets* work_queue_sets_; // NOT OWNED.
TaskQueueImpl* const task_queue_; // NOT OWNED.
size_t work_queue_set_index_;

Powered by Google App Engine
This is Rietveld 408576698