summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/platform/scheduler/base/task_queue_selector_logic.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/platform/scheduler/base/task_queue_selector_logic.h')
-rw-r--r--chromium/third_party/blink/renderer/platform/scheduler/base/task_queue_selector_logic.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/chromium/third_party/blink/renderer/platform/scheduler/base/task_queue_selector_logic.h b/chromium/third_party/blink/renderer/platform/scheduler/base/task_queue_selector_logic.h
deleted file mode 100644
index 0e85d67bfe2..00000000000
--- a/chromium/third_party/blink/renderer/platform/scheduler/base/task_queue_selector_logic.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// 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_SCHEDULER_BASE_TASK_QUEUE_SELECTOR_LOGIC_H_
-#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_SCHEDULER_BASE_TASK_QUEUE_SELECTOR_LOGIC_H_
-
-namespace base {
-namespace sequence_manager {
-
-// Used to describe the logic trigerred when a task queue is selected to
-// service.
-// This enum is used for histograms and should not be renumbered.
-enum class TaskQueueSelectorLogic {
-
- // Selected due to priority rules.
- kControlPriorityLogic = 0,
- kHighestPriorityLogic = 1,
- kHighPriorityLogic = 2,
- kNormalPriorityLogic = 3,
- kLowPriorityLogic = 4,
- kBestEffortPriorityLogic = 5,
-
- // Selected due to starvation logic.
- kHighPriorityStarvationLogic = 6,
- kNormalPriorityStarvationLogic = 7,
- kLowPriorityStarvationLogic = 8,
-
- kCount = 9,
-};
-
-} // namespace sequence_manager
-} // namespace base
-
-#endif