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 // Provides the target binary to be used by executables other than the reporter
6 // and cleaner.
7 
8 #include "chrome/chrome_cleaner/settings/settings_definitions.h"
9 
10 namespace chrome_cleaner {
11 
GetTargetBinary()12 TargetBinary GetTargetBinary() {
13   return TargetBinary::kOther;
14 }
15 
16 }  // namespace chrome_cleaner
17