// 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_dictionary.h" namespace media { namespace learning { FeatureDictionary::FeatureDictionary() = default; FeatureDictionary::~FeatureDictionary() = default; void FeatureDictionary::Lookup(const LearningTask& task, FeatureVector* features) const { … } void FeatureDictionary::Add(const std::string& name, const FeatureValue& value) { … } } // namespace learning } // namespace media