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

Unified Diff: base/task_scheduler/task_traits.h

Issue 1705253002: TaskScheduler [3/9] Task and Sequence (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@s_1_scheduler_lock
Patch Set: static_assert Created 4 years, 10 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: base/task_scheduler/task_traits.h
diff --git a/base/task_scheduler/task_traits.h b/base/task_scheduler/task_traits.h
index 8b564f44f5a5cdb8477ac9e2f4966d807e1e2204..e3558b014b0c886a1f0cb2022bb1c3a7d3f09a98 100644
--- a/base/task_scheduler/task_traits.h
+++ b/base/task_scheduler/task_traits.h
@@ -5,31 +5,46 @@
#ifndef BASE_TASK_SCHEDULER_TASK_TRAITS_H_
#define BASE_TASK_SCHEDULER_TASK_TRAITS_H_
+#include <stdint.h>
+
+#include <iosfwd>
+
#include "base/base_export.h"
#include "build/build_config.h"
namespace base {
-using TaskPriorityUnderlyingType = char;
-
-// Valid priorities supported by the task scheduler.
-enum class TaskPriority : TaskPriorityUnderlyingType {
- // This task affects UI immediately after a user interaction.
- // Example: Generating data shown in the UI immediately after a click.
- USER_BLOCKING = 2,
+namespace internal {
+using TaskPriorityUnderlyingType = uint8_t;
+} // namespace internal
+
+// Valid priorities supported by the task scheduler. Note: internal algorithms
+// depend on priorities being expressed as a continuous zero-based list from
+// lowest to highest priority. Users of this API shouldn't otherwise care about
+// nor use the underlying values.
+enum class TaskPriority : internal::TaskPriorityUnderlyingType {
danakj 2016/03/15 23:16:32 Is there a reason why you need to define the Under
fdoray 2016/03/16 19:11:44 static_cast to int is fine.
+ // This will always be equal to the lowest priority available.
+ LOWEST = 0,
+ // User won't notice if this task takes an arbitrarily long time to complete.
+ BACKGROUND = LOWEST,
// This task affects UI or responsiveness of future user interactions. It is
// not an immediate response to a user interaction.
// Examples:
// - Updating the UI to reflect progress on a long task.
// - Loading data that might be shown in the UI after a future user
// interaction.
- USER_VISIBLE = 1,
- // Everything else (user won't notice if this takes an arbitrarily long time
- // to complete).
- BACKGROUND = 0,
+ USER_VISIBLE,
+ // This task affects UI immediately after a user interaction.
+ // Example: Generating data shown in the UI immediately after a click.
+ USER_BLOCKING,
+ // This will always be equal to the highest priority available.
+ HIGHEST = USER_BLOCKING,
};
-const TaskPriorityUnderlyingType kNumTaskPriorities = 3;
+namespace internal {
+const size_t kNumTaskPriorities =
+ static_cast<TaskPriorityUnderlyingType>(TaskPriority::HIGHEST) + 1;
danakj 2016/03/15 23:16:32 use an enum to put a static const in a header file
fdoray 2016/03/16 19:11:44 I removed this constant. I use static_cast<int>(Ta
+} // namespace internal
// Valid shutdown behaviors supported by the task scheduler.
enum class TaskShutdownBehavior {
@@ -117,6 +132,9 @@ enum class ExecutionMode {
SINGLE_THREADED,
};
+// Pretty Printer for Google Test.
+void BASE_EXPORT PrintTo(const TaskPriority& task_priority, std::ostream* os);
+
} // namespace base
#endif // BASE_TASK_SCHEDULER_TASK_TRAITS_H_

Powered by Google App Engine
This is Rietveld 408576698