// 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. #include "base/task/task_traits.h" #include <stddef.h> #include <ostream> #include "base/notreached.h" namespace base { const char* TaskPriorityToString(TaskPriority task_priority) { … } const char* TaskShutdownBehaviorToString( TaskShutdownBehavior shutdown_behavior) { … } std::ostream& operator<<(std::ostream& os, const TaskPriority& task_priority) { … } std::ostream& operator<<(std::ostream& os, const TaskShutdownBehavior& shutdown_behavior) { … } } // namespace base