1 // Copyright 2020 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/updater/test/test_app/test_app.h"
6 
7 #include "base/notreached.h"
8 
9 namespace updater {
10 
InstallUpdater()11 int InstallUpdater() {
12   // TODO(1068693): Implement TestApp Functionality.
13   NOTIMPLEMENTED();
14   return 0;
15 }
16 
17 }  // namespace updater
18