chromium/media/learning/common/media_learning_tasks.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 "media/learning/common/media_learning_tasks.h"

#include "base/no_destructor.h"
#include "base/notreached.h"

namespace media {
namespace learning {
namespace {

const LearningTask& GetWillPlayTask() {}

// Add some features to |task| that WMPI knows how to add.
void PushWMPIFeatures(LearningTask& task) {}

const LearningTask& GetConsecutiveBadWindowsTask() {}

const LearningTask& GetConsecutiveNNRsTask() {}

}  // namespace

// static
const LearningTask& MediaLearningTasks::Get(const char* task_name) {}

// static
void MediaLearningTasks::Register(
    base::RepeatingCallback<void(const LearningTask&)> cb) {}

}  // namespace learning
}  // namespace media