blob: dc10b47bc86370d660aec39f9a7ee67bc641bfd3 [file] [log] [blame]
// 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/feature_library.h"
namespace media {
namespace learning {
using ValueDescription = LearningTask::ValueDescription;
using Ordering = LearningTask::Ordering;
// static
ValueDescription FeatureLibrary::NetworkType() {
return ValueDescription({"NetworkType", Ordering::kUnordered});
}
// static
ValueDescription FeatureLibrary::BatteryPower() {
return ValueDescription({"BatteryPower", Ordering::kUnordered});
}
} // namespace learning
} // namespace media