1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24

media / learning / common / feature_library.cc [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