1 // Copyright 2018 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 
5 #include "chrome/chrome_cleaner/settings/matching_options.h"
6 
7 namespace chrome_cleaner {
8 
only_one_footprint() const9 bool MatchingOptions::only_one_footprint() const {
10   return only_one_footprint_;
11 }
12 
set_only_one_footprint(bool only_one_footprint)13 void MatchingOptions::set_only_one_footprint(bool only_one_footprint) {
14   only_one_footprint_ = only_one_footprint;
15 }
16 
17 }  // namespace chrome_cleaner
18