blob: 25535b3664870ca9882a10958106a983476b70bc [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.
#include "chrome/chrome_cleaner/ipc/mock_chrome_prompt_ipc.h"
#include <string>
namespace chrome_cleaner {
MockChromePromptIPC::MockChromePromptIPC()
: ChromePromptIPC(std::string(), nullptr) {}
MockChromePromptIPC::~MockChromePromptIPC() = default;
void MockChromePromptIPC::PostPromptUserTask(
const std::vector<base::FilePath>& files_to_delete,
const std::vector<base::string16>& registry_keys,
const std::vector<base::string16>& extension_ids,
mojom::ChromePrompt::PromptUserCallback callback) {
MockPostPromptUserTask(files_to_delete, registry_keys, extension_ids,
&callback);
}
} // namespace chrome_cleaner