blob: 43e76214d2a366eec2daacb72a97b9fdb53a854e [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_SCANNER_FORCE_INSTALLED_EXTENSION_SCANNER_IMPL_H_
#define CHROME_CHROME_CLEANER_SCANNER_FORCE_INSTALLED_EXTENSION_SCANNER_IMPL_H_
#include <memory>
#include <vector>
#include "chrome/chrome_cleaner/chrome_utils/force_installed_extension.h"
#include "chrome/chrome_cleaner/parsers/json_parser/json_parser_api.h"
#include "chrome/chrome_cleaner/proto/uwe_matcher.pb.h"
#include "chrome/chrome_cleaner/scanner/force_installed_extension_scanner.h"
namespace chrome_cleaner {
class ForceInstalledExtensionScannerImpl
: public ForceInstalledExtensionScanner {
public:
ForceInstalledExtensionScannerImpl();
~ForceInstalledExtensionScannerImpl() override;
// Create a list of Matchers from the resource ID.
std::unique_ptr<UwEMatchers> CreateUwEMatchersFromResource(
int resource_id) override;
// Gets a complete list of the force installed extensions that can then
// be matched with known UwS.
std::vector<ForceInstalledExtension> GetForceInstalledExtensions(
JsonParserAPI* json_parser) override;
};
} // namespace chrome_cleaner
#endif // CHROME_CHROME_CLEANER_SCANNER_FORCE_INSTALLED_EXTENSION_SCANNER_IMPL_H_