File: task_category.h

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (36 lines) | stat: -rw-r--r-- 1,498 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CC_RASTER_TASK_CATEGORY_H_
#define CC_RASTER_TASK_CATEGORY_H_

#include <cstdint>

namespace cc {

// This enum provides values for TaskGraph::Node::category, which is a uint16_t.
// We don't use an enum class here, as we want to keep TaskGraph::Node::category
// generic, allowing other consumers to provide their own of values.
enum TaskCategory : uint16_t {
  // Cannot run at the same time as another non-concurrent task.
  TASK_CATEGORY_NONCONCURRENT_FOREGROUND,
  // Can run concurrently with other tasks.
  TASK_CATEGORY_FOREGROUND,
  // Can only start running when there are no foreground tasks to run. May run
  // at background thread priority, which means that it may take time to
  // complete once it starts running.
  TASK_CATEGORY_BACKGROUND,
  // Can only start running when there are no foreground tasks to run. Cannot
  // run at background thread priority, which means that it takes a normal time
  // to complete once it starts running. This is useful for a task that acquires
  // resources that must not be held for a long time because they are shared
  // with foreground work (e.g. a lock under which heavy work is performed).
  TASK_CATEGORY_BACKGROUND_WITH_NORMAL_THREAD_PRIORITY,

  LAST_TASK_CATEGORY = TASK_CATEGORY_BACKGROUND_WITH_NORMAL_THREAD_PRIORITY
};

}  // namespace cc

#endif  // CC_RASTER_TASK_CATEGORY_H_