blob: 0fa286d59dcd9332bc16defc791b14fff48d22cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright 2019 The Chromium Authors. All rights reserved.
// 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
|