blob: 0e56216b4d2069bda57e09226a86ab335ff84ddf [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_CHROME_CLEANER_TEST_FILE_REMOVER_TEST_UTIL_H_
#define CHROME_CHROME_CLEANER_TEST_FILE_REMOVER_TEST_UTIL_H_
#include "base/files/file_path.h"
#include "chrome/chrome_cleaner/os/file_remover_api.h"
namespace chrome_cleaner {
void VerifyRemoveNowSuccess(const base::FilePath& path,
FileRemoverAPI* remover);
void VerifyRemoveNowFailure(const base::FilePath& path,
FileRemoverAPI* remover);
void VerifyRegisterPostRebootRemovalSuccess(const base::FilePath& path,
FileRemoverAPI* remover);
void VerifyRegisterPostRebootRemovalFailure(const base::FilePath& path,
FileRemoverAPI* remover);
} // namespace chrome_cleaner
#endif // CHROME_CHROME_CLEANER_TEST_FILE_REMOVER_TEST_UTIL_H_