#ifndef CHROME_UPDATER_APP_APP_UNINSTALL_H_
#define CHROME_UPDATER_APP_APP_UNINSTALL_H_
#include <vector>
#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/memory/scoped_refptr.h"
#include "chrome/updater/updater_scope.h"
namespace updater {
class App;
std::vector<base::FilePath> GetVersionExecutablePaths(UpdaterScope scope);
base::CommandLine GetUninstallSelfCommandLine(
UpdaterScope scope,
const base::FilePath& executable_path);
scoped_refptr<App> MakeAppUninstall();
}
#endif