// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/zucchini/ensemble_matcher.h" #include <limits> #include <vector> #include "base/logging.h" #include "base/ranges/algorithm.h" namespace zucchini { /******** EnsembleMatcher ********/ EnsembleMatcher::EnsembleMatcher() = default; EnsembleMatcher::~EnsembleMatcher() = default; void EnsembleMatcher::Trim() { … } } // namespace zucchini