Samuel Huang | fdb2f3a | 2017-12-20 17:45:14 | [diff] [blame] | 1 | // 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 Huang | 577ef6c | 2018-03-13 18:19:34 | [diff] [blame^] | 5 | #include "components/zucchini/ensemble_matcher.h" |
Samuel Huang | fdb2f3a | 2017-12-20 17:45:14 | [diff] [blame] | 6 | |
| 7 | #include <limits> |
Samuel Huang | fdb2f3a | 2017-12-20 17:45:14 | [diff] [blame] | 8 | |
| 9 | #include "base/logging.h" |
| 10 | #include "base/strings/stringprintf.h" |
| 11 | |
| 12 | namespace zucchini { |
| 13 | |
| 14 | /******** EnsembleMatcher ********/ |
| 15 | |
| 16 | EnsembleMatcher::EnsembleMatcher() = default; |
| 17 | |
| 18 | EnsembleMatcher::~EnsembleMatcher() = default; |
| 19 | |
| 20 | void EnsembleMatcher::Trim() { |
| 21 | // TODO(huangs): Add MultiDex handling logic when we add DEX support. |
| 22 | } |
| 23 | |
Samuel Huang | fdb2f3a | 2017-12-20 17:45:14 | [diff] [blame] | 24 | } // namespace zucchini |