// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_WIDGET_INPUT_MAIN_THREAD_EVENT_QUEUE_TASK_LIST_H_ #define THIRD_PARTY_BLINK_RENDERER_PLATFORM_WIDGET_INPUT_MAIN_THREAD_EVENT_QUEUE_TASK_LIST_H_ #include <memory> #include "base/containers/circular_deque.h" #include "third_party/blink/renderer/platform/widget/input/main_thread_event_queue_task.h" namespace blink { // The list of tasks that the main thread event queue will execute. // This class supports coalescing upon queueing a task. class MainThreadEventQueueTaskList { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_WIDGET_INPUT_MAIN_THREAD_EVENT_QUEUE_TASK_LIST_H_