blob: eebbae9b5b27f092eddccb52c51ca593aae80104 [file] [log] [blame]
Samuel Huangfdb2f3a2017-12-20 17:45:141// Copyright 2017 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Samuel Huang577ef6c2018-03-13 18:19:345#include "components/zucchini/ensemble_matcher.h"
Samuel Huangfdb2f3a2017-12-20 17:45:146
7#include <limits>
Samuel Huangfdb2f3a2017-12-20 17:45:148
9#include "base/logging.h"
10#include "base/strings/stringprintf.h"
11
12namespace zucchini {
13
14/******** EnsembleMatcher ********/
15
16EnsembleMatcher::EnsembleMatcher() = default;
17
18EnsembleMatcher::~EnsembleMatcher() = default;
19
20void EnsembleMatcher::Trim() {
21 // TODO(huangs): Add MultiDex handling logic when we add DEX support.
22}
23
Samuel Huangfdb2f3a2017-12-20 17:45:1424} // namespace zucchini