chromium/third_party/blink/renderer/platform/scheduler/common/web_scheduling_priority.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/platform/scheduler/public/web_scheduling_priority.h"

#include "base/notreached.h"

namespace blink {

namespace {

const char kUserBlockingPriorityKeyword[] =;
const char kUserVisiblePriorityKeyword[] =;
const char kBackgroundPriorityKeyword[] =;

}  // namespace

AtomicString WebSchedulingPriorityToString(WebSchedulingPriority priority) {}

WebSchedulingPriority WebSchedulingPriorityFromString(
    const AtomicString& priority) {}

}  // namespace blink